소스 검색

VLCFullscreenMovieTVViewController: Fix play after pause with Siri Remote

Soomin Lee 7 년 전
부모
커밋
72b810576e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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];
     }
 }