mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-07-25 21:50:51 +02:00
9 lines
310 B
Plaintext
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 |