Files
RyukGram/src/Features/StoriesAndMessages/DisableTypingStatus.x
T

9 lines
310 B
Plaintext

#import "../../Utils.h"
%hook IGDirectTypingStatusService
- (void)updateOutgoingStatusIsActive:(_Bool)active threadKey:(id)key threadMetadata:(id)metadata typingStatusType:(long long)type {
if ([SCIUtils getBoolPref:@"disable_typing_status"]) return;
return %orig(active, key, metadata, type);
}
%end