Skip to content

Commit

Permalink
fix: delay issue android
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Aug 3, 2022
1 parent ec54590 commit e88645e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ public void onActivityStopped(@NonNull final Activity activity) {
try {
final String delayUpdate = this.prefs.getString(DELAY_UPDATE, "");
this._checkCancelDelay(false);
if ("".equals(delayUpdate)) {
if (!"".equals(delayUpdate)) {
Log.i(CapacitorUpdater.TAG, "Update delayed to next backgrounding");
return;
}
Expand Down

0 comments on commit e88645e

Please sign in to comment.