Avoid NullPointerException
This commit is contained in:
parent
47a99c4e90
commit
38565f6bff
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