Merge pull request #358 from thomasleplus/patch-1

Avoid NullPointerException
This commit is contained in:
Konloch 2021-09-19 10:52:13 -07:00 committed by GitHub
commit 033098d93c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ public class XposedGenerator extends Plugin
try
//
{
if (foundpckg.isEmpty() || foundpckg == null)
if (foundpckg == null || foundpckg.isEmpty())
foundpckg = "No Package Found";
}