mirror of
https://github.com/NohamR/Tweaks.git
synced 2026-05-24 19:59:59 +00:00
16 lines
356 B
Plaintext
16 lines
356 B
Plaintext
#import <Foundation/Foundation.h>
|
|
|
|
%hook FWRequestConfiguration
|
|
- (id)initWithServerURL:(id)arg1 playerProfile:(id)arg2 {
|
|
return self;
|
|
}
|
|
%end
|
|
|
|
%hook VSSubscriptionRegistrationCenter
|
|
- (void)setCurrentSubscription:(id)subscription
|
|
{
|
|
NSLog(@"Blocked VSSubscriptionRegistrationCenter");
|
|
NSLog(@"Subscription: %@", subscription);
|
|
return;
|
|
}
|
|
%end |