From 4968fe642c633b58d09c07951c7498e915aa7078 Mon Sep 17 00:00:00 2001 From: Jonathan Carter Date: Thu, 29 Oct 2015 10:42:25 -0700 Subject: [PATCH] Fixing typo --- CodePush.ios.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodePush.ios.js b/CodePush.ios.js index f058c78..77677f4 100644 --- a/CodePush.ios.js +++ b/CodePush.ios.js @@ -127,7 +127,7 @@ function sync(options = {}) { return new Promise((resolve, reject) => { checkForUpdate() .then((remotePackage) => { - if (!remotePackage || (remotePackage.failedAppy && syncOptions.ignoreFailedUpdates)) { + if (!remotePackage || (remotePackage.failedApply && syncOptions.ignoreFailedUpdates)) { resolve(CodePush.SyncStatus.NO_UPDATE_AVAILABLE); } else {