Actually prevent uYou's playback from colliding with YouTube's

This commit is contained in:
Foxster
2024-01-28 09:53:08 -08:00
parent 61e55e1b15
commit 880603f7f4
2 changed files with 14 additions and 7 deletions
+5 -1
View File
@@ -10,9 +10,13 @@
-(YTSingleVideoController *)activeVideo;
@end
// Prevent uYou player bar from showing when not playing downloaded media
@interface PlayerManager : NSObject
// Prevent uYou player bar from showing when not playing downloaded media
- (float)progress;
// Prevent uYou's playback from colliding with YouTube's
- (void)setSource:(id)source;
- (void)pause;
+ (id)sharedInstance;
@end
// iOS 16 uYou crash fix - @level3tjg: https://github.com/qnblackcat/uYouPlus/pull/224