From c7e6b77d13e3633e97d50bbac884fa83e94cf4ea Mon Sep 17 00:00:00 2001 From: BrianCArnold Date: Sat, 1 May 2021 16:56:37 -0400 Subject: [PATCH] Update src/scripts/browserDeviceProfile.js Co-authored-by: Dmitry Lyzo <56478732+dmitrylyzo@users.noreply.github.com> --- src/scripts/browserDeviceProfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index b3e3d59156..30d884613d 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -945,14 +945,14 @@ import browser from './browser'; // External vtt or burn in profile.SubtitleProfiles = []; const subtitleBurninSetting = appSettings.get('subtitleburnin'); - if (!options.isRetry && subtitleBurninSetting !== 'all') { + if (subtitleBurninSetting !== 'all') { if (supportsTextTracks()) { profile.SubtitleProfiles.push({ Format: 'vtt', Method: 'External' }); } - if (options.enableSsaRender !== false && subtitleBurninSetting !== 'allcomplexformats') { + if (options.enableSsaRender !== false && !options.isRetry && subtitleBurninSetting !== 'allcomplexformats') { profile.SubtitleProfiles.push({ Format: 'ass', Method: 'External'