Explorar o código

VLCPlaybackController: restart playback also when the media is paused and in the miniplayer

Carola Nitz %!s(int64=7) %!d(string=hai) anos
pai
achega
f55620c0e4
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      Sources/VLCPlaybackController.m

+ 2 - 2
Sources/VLCPlaybackController.m

@@ -149,8 +149,8 @@ VLCMediaDelegate, VLCRemoteControlServiceDelegate>
     _itemInMediaListToBePlayedFirst = (int)index;
     _pathToExternalSubtitlesFile = subsFilePath;
 
-    _sessionWillRestart = self.isPlaying;
-    self.isPlaying ?  [self stopPlayback] : [self startPlayback];
+    _sessionWillRestart = _playerIsSetup;
+    _playerIsSetup ? [self stopPlayback] : [self startPlayback];
 }
 
 - (VLCTime *)playedTime