mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-07-25 13:40:53 +02:00
10 lines
299 B
Plaintext
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 |