Parcourir la source

VLCFullscreenMovieTVViewController: Fix play after pause with Siri Remote

Soomin Lee il y a 7 ans
Parent
commit
72b810576e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Apple-TV/Playback/VLCFullscreenMovieTVViewController.m

+ 1 - 1
Apple-TV/Playback/VLCFullscreenMovieTVViewController.m

@@ -296,7 +296,7 @@ typedef NS_ENUM(NSInteger, VLCPlayerScanState)
         bar.playbackFraction = bar.scrubbingFraction;
         [self stopScrubbing];
         [vpc setPlaybackPosition:bar.scrubbingFraction];
-    } else if(vpc.isPlaying) {
+    } else {
         [vpc playPause];
     }
 }