no parts selection if in/out is set

This commit is contained in:
j 2020-02-02 15:42:14 +01:00
parent 9e0df969e9
commit 6e9b9715fb

View file

@ -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
})),