Merge remote-tracking branch 'origin/main' into misc-features

This commit is contained in:
Bryce Hackel 2024-07-08 00:37:31 -07:00
commit a55c46c0c3
No known key found for this signature in database
GPG key ID: F031960F08455E88
2 changed files with 0 additions and 11 deletions

View file

@ -67,7 +67,6 @@
- (void)setRate:(float)rate;
@end
// IAmYouTube
@interface SSOConfiguration : NSObject
@end

View file

@ -67,16 +67,6 @@ static BOOL IsEnabled(NSString *key) {
}
%end
// Fix Google Sign in by @PoomSmart and @level3tjg (qnblackcat/uYouPlus#684)
%hook NSBundle
- (NSDictionary *)infoDictionary {
NSMutableDictionary *info = %orig.mutableCopy;
if ([self isEqual:NSBundle.mainBundle])
info[@"CFBundleIdentifier"] = @"com.google.ios.youtube";
return info;
}
%end
// Skips content warning before playing *some videos - @PoomSmart
%hook YTPlayabilityResolutionUserActionUIController
- (void)showConfirmAlert { [self confirmAlertDidPressConfirm]; }