Files
Tweaks/TF1Plus/TF1Plus-iOS/Tweak.x
2026-05-11 00:55:20 +02:00

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