diff --git a/Sources/uYouPlusPatches.xm b/Sources/uYouPlusPatches.xm index a48fa02ccd..b7c4f40436 100644 --- a/Sources/uYouPlusPatches.xm +++ b/Sources/uYouPlusPatches.xm @@ -3,14 +3,14 @@ # pragma mark - YouTube patches // Fix Google Sign in by @PoomSmart and @level3tjg (qnblackcat/uYouPlus#684) -%hook NSBundle -- (NSDictionary *)infoDictionary { - NSMutableDictionary *info = %orig.mutableCopy; - if ([self isEqual:NSBundle.mainBundle] && [[NSUserDefaults standardUserDefaults] boolForKey:kGoogleSigninFix]) - info[@"CFBundleIdentifier"] = @"com.google.ios.youtube"; - return info; -} -%end +//%hook NSBundle +//- (NSDictionary *)infoDictionary { +// NSMutableDictionary *info = %orig.mutableCopy; +// if ([self isEqual:NSBundle.mainBundle] && [[NSUserDefaults standardUserDefaults] boolForKey:kGoogleSigninFix]) +// info[@"CFBundleIdentifier"] = @"com.google.ios.youtube"; +// return info; +//} +//%end %hook YTHotConfig - (BOOL)disableAfmaIdfaCollection { return NO; }