mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-21 11:52:00 +00:00
Fix YouTube Sign in Issue (credit: level3tjg)
This commit is contained in:
parent
8a7bc73881
commit
c443c48725
1 changed files with 2 additions and 2 deletions
|
|
@ -6,8 +6,8 @@
|
||||||
%hook NSBundle
|
%hook NSBundle
|
||||||
- (NSDictionary *)infoDictionary {
|
- (NSDictionary *)infoDictionary {
|
||||||
NSMutableDictionary *info = %orig.mutableCopy;
|
NSMutableDictionary *info = %orig.mutableCopy;
|
||||||
NSString *altBundleIdentifier = info[@"ALTBundleIdentifier"];
|
if ([self isEqual:NSBundle.mainBundle])
|
||||||
if (altBundleIdentifier) info[@"CFBundleIdentifier"] = altBundleIdentifier;
|
info[@"CFBundleIdentifier"] = @"com.google.ios.youtube";
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
%end
|
%end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue