Remove another duplicate

This commit is contained in:
arichornlover
2024-07-07 05:48:10 -05:00
committed by GitHub
parent bdaaf70098
commit 1cb51102ba

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]; }