Skip to content

Commit 296c44d

Browse files
committed
Extend block verification toast display time to 2000ms
1 parent d3cc668 commit 296c44d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/wmods/wppenhacer/xposed/features/customization/ContactBlockedVerify.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
110110
var textView2 = (TextView) view.findViewById(0x7f990001);
111111
if (textView2 == null) return;
112112
textView2.setSelected(true);
113-
if (System.currentTimeMillis() - startTime < 1000) {
113+
if (System.currentTimeMillis() - startTime < 2000) {
114114
textView2.setText(ResId.string.block_unverified);
115115
return;
116116
}

0 commit comments

Comments
 (0)