From 38565f6bff44683ce18b156c3949b13b1fa6c1fa Mon Sep 17 00:00:00 2001 From: Thomas Leplus Date: Fri, 17 Sep 2021 19:48:09 -0700 Subject: [PATCH] Avoid NullPointerException --- plugins/XposedGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/XposedGenerator.java b/plugins/XposedGenerator.java index 4eb83368..216a2239 100644 --- a/plugins/XposedGenerator.java +++ b/plugins/XposedGenerator.java @@ -311,7 +311,7 @@ public class XposedGenerator extends Plugin try // { - if (foundpckg.isEmpty() || foundpckg == null) + if (foundpckg == null || foundpckg.isEmpty()) foundpckg = "No Package Found"; }