Files
RyukGram/src/Features/Feed/DisableFeedAutoplay.x
T

10 lines
299 B
Plaintext

#import "../../Utils.h"
// Demangled name: IGFeedPlayback.IGFeedPlaybackStrategy
%hook _TtC14IGFeedPlayback22IGFeedPlaybackStrategy
- (id)initWithShouldDisableAutoplay:(_Bool)autoplay {
if ([SCIUtils getBoolPref:@"disable_feed_autoplay"]) return %orig(true);
return %orig(autoplay);
}
%end