Skip to content

Commit

Permalink
Merge pull request #10 from mgeier63/master
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
oversecio committed Jan 9, 2019
2 parents e4a6e11 + 00456f0 commit 340c82c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
proguardMappings
app/src/oversec
app/src/whatsapp
app/src/intern
Expand Down
Expand Up @@ -829,6 +829,8 @@ private void handleScrapeAll_MAIN(String reason, PerformNodeAction nodeAction) {
if (rootNode != null) {

//fail-fast if this is not a package we're interested in
CharSequence csPackageName = rootNode.getPackageName();
if (csPackageName==null) return;
String aPackageName = rootNode.getPackageName().toString();
boolean ours = mCore.getDb().isShowDecryptOverlay(aPackageName);
if (!ours) {
Expand Down

0 comments on commit 340c82c

Please sign in to comment.