Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 3078277

Browse files
committed
feedback
1 parent 36e90ac commit 3078277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodePush.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ async function sync(options = {}, syncStatusChangeCallback, downloadProgressCall
201201
return CodePush.SyncStatus.UPDATE_INSTALLED;
202202
};
203203

204-
if (!remotePackage || (remotePackage.failedInstall && syncOptions.ignoreFailedUpdates)) {
204+
if (!remotePackage || remotePackage.failedInstall && syncOptions.ignoreFailedUpdates) {
205205
syncStatusChangeCallback(CodePush.SyncStatus.UP_TO_DATE);
206206
return (CodePush.SyncStatus.UP_TO_DATE);
207207
} else if (syncOptions.updateDialog) {

0 commit comments

Comments
 (0)