Avoid NullPointerException

This commit is contained in:
Thomas Leplus 2021-09-17 19:48:09 -07:00 committed by GitHub
parent 47a99c4e90
commit 38565f6bff
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";
}