summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/relay/modules/pix2pixhd.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js
index 93f9c3a..2f794b0 100644
--- a/app/relay/modules/pix2pixhd.js
+++ b/app/relay/modules/pix2pixhd.js
@@ -233,12 +233,12 @@ const splice = {
type: 'perl',
script: 'splice.pl',
params: (task) => {
- console.log(selection)
+ console.log(task.opt.selection)
return [
'--dataset', task.dataset,
'--sequence', task.opt.sequence,
- '--start_frame', selection.start.i,
- '--end_frame', selection.end.i,
+ '--start_frame', task.opt.selection.start.i,
+ '--end_frame', task.opt.selection.end.i,
'--module', task.module,
'--folder_id', task.opt.folder_id,
'--endpoint', process.env.API_REMOTE + '/api/file/',