Update "skipFeedbackDialog" patch

This commit is contained in:
redphx
2024-10-15 16:49:38 +07:00
parent 749d5d720e
commit 3f834f74b6
2 changed files with 4 additions and 4 deletions

View File

@@ -632,12 +632,12 @@ true` + text;
},
skipFeedbackDialog(str: string) {
let text = '&&this.shouldTransitionToFeedback(';
let text = 'shouldTransitionToFeedback(e){';
if (!str.includes(text)) {
return false;
}
str = str.replace(text, '&& false ' + text);
str = str.replace(text, text + 'return !1;');
return str;
},