From 158964fe08670bab9792f6a2b1cfbe0bdd36db64 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Sun, 13 Feb 2022 22:32:47 +0800 Subject: [PATCH] fix odd bug --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index f8eda2a..8380978 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1189,7 +1189,7 @@ const App = memo(() => { // https://github.com/mifi/lossless-cut/issues/329 if (isIphoneHevc(fileFormatData, mainStreams)) msgs.push(i18n.t('There is a known issue with cutting iPhone HEVC videos. The output file may not work in all players.')); - if (exportExtraStreams && enabledOutSegments.length > 1) { + if (exportExtraStreams) { try { await extractStreams({ filePath, customOutDir, streams: nonCopiedExtraStreams }); msgs.push(i18n.t('Unprocessable streams were exported as separate files.'));