diff --git a/lib/screens/video_player_screen.dart b/lib/screens/video_player_screen.dart index 36793233..63522dcc 100644 --- a/lib/screens/video_player_screen.dart +++ b/lib/screens/video_player_screen.dart @@ -224,6 +224,7 @@ class VideoPlayerScreenState extends State 'sub-back-color': '#${(settingsService.getSubtitleBackgroundOpacity() * 255 / 100).toInt().toRadixString(16).padLeft(2, '0').toUpperCase()}${settingsService.getSubtitleBackgroundColor().replaceFirst('#', '')}', 'sub-ass-override': 'no', + 'audio-exclusive': 'yes', }, ), ); @@ -1515,7 +1516,9 @@ class VideoPlayerScreenState extends State player!.play(); // Clear the inactive state flag since user manually resumed via media controls _wasPlayingBeforeInactive = false; - appLogger.d('Cleared _wasPlayingBeforeInactive due to manual play via media controls'); + appLogger.d( + 'Cleared _wasPlayingBeforeInactive due to manual play via media controls', + ); // Update media controls to reflect the new state _updateMediaControlsPlaybackState(); }