We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74760ab commit ab944a5Copy full SHA for ab944a5
app/src/main/java/com/wmods/wppenhacer/xposed/core/WppCore.java
@@ -399,7 +399,7 @@ public static String stripJID(String str) {
399
if (str == null) return null;
400
if (str.contains(".") && str.contains("@") && str.indexOf(".") < str.indexOf("@")) {
401
return str.substring(0, str.indexOf("."));
402
- } else if (str.contains("@g.us") || str.contains("@s.whatsapp.net") || str.contains("@broadcast")) {
+ } else if (str.contains("@g.us") || str.contains("@s.whatsapp.net") || str.contains("@broadcast") || str.contains("@lid")) {
403
return str.substring(0, str.indexOf("@"));
404
}
405
return str;
0 commit comments