Skip to content

Commit

Permalink
fix: fix action flow logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Gedsh committed Jul 24, 2023
1 parent 6004da4 commit b96a2c9
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,6 @@ private void observeRootState() {
}

performBackgroundWorkAfterRootChecking();

performMainThreadWorkAfterRootChecking();
});
}

Expand All @@ -368,6 +366,10 @@ private void performBackgroundWorkAfterRootChecking() {

checkIntegrity(activity);

if (handler != null) {
handler.post(this::performMainThreadWorkAfterRootChecking);
}

});
}

Expand Down

0 comments on commit b96a2c9

Please sign in to comment.