Skip to content

Commit d98d80e

Browse files
committed
refact: Catch Throwable instead of Exception in FMessageWpp
1 parent 0b2a77d commit d98d80e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/wmods/wppenhacer/xposed/core/components/FMessageWpp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ public UserJid(@Nullable Object lidOrJid) {
325325
String raw;
326326
try {
327327
raw = (String) XposedHelpers.callMethod(lidOrJid, "getRawString");
328-
} catch (Exception ignored) {
328+
} catch (Throwable ignored) {
329329
return;
330330
}
331331
if (isInvalidJid(raw)) return;

0 commit comments

Comments
 (0)