Merge pull request #358 from thomasleplus/patch-1
Avoid NullPointerException
This commit is contained in:
commit
033098d93c
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ public class XposedGenerator extends Plugin
|
|||
try
|
||||
//
|
||||
{
|
||||
if (foundpckg.isEmpty() || foundpckg == null)
|
||||
if (foundpckg == null || foundpckg.isEmpty())
|
||||
foundpckg = "No Package Found";
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue