From 6e9b9715fb7e4b82f0cfda99f25dd83cbc65b891 Mon Sep 17 00:00:00 2001 From: j Date: Sun, 2 Feb 2020 15:42:14 +0100 Subject: [PATCH] no parts selection if in/out is set --- static/js/downloadVideoDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/downloadVideoDialog.js b/static/js/downloadVideoDialog.js index 88d58b7e..9e32cad9 100644 --- a/static/js/downloadVideoDialog.js +++ b/static/js/downloadVideoDialog.js @@ -9,7 +9,7 @@ pandora.ui.downloadVideoDialog = function(options) { 'mp4': 'MP4', }, - parts = Ox.max(options.video.map(function(video) { + parts = options.out ? null : Ox.max(options.video.map(function(video) { return video.index })),