Files
RyukGram/src/Features/Confirm/PostCommentConfirm.x
T

13 lines
325 B
Plaintext

#import "../../Utils.h"
%hook IGCommentComposer.IGCommentComposerController
- (void)onSendButtonTap {
if ([SCIUtils getBoolPref:@"post_comment_confirm"]) {
NSLog(@"[SCInsta] Confirm post comment triggered");
[SCIUtils showConfirmation:^(void) { %orig; }];
} else {
return %orig;
}
}
%end