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

Commit a65294c

Browse files
committed
Update enum values
1 parent a974075 commit a65294c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CodePush.ios.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,11 @@ var CodePush = {
251251
UPDATE_INSTALLED: 2 // The app had an optional/mandatory update that was successfully downloaded and is about to be installed.
252252
},
253253
SyncStatus: {
254-
CHECKING_FOR_UPDATE: 1,
255-
AWAITING_USER_ACTION: 2,
256-
DOWNLOADING_PACKAGE: 3,
257-
INSTALLING_UPDATE: 4,
258-
IDLE: 5
254+
CHECKING_FOR_UPDATE: 0,
255+
AWAITING_USER_ACTION: 1,
256+
DOWNLOADING_PACKAGE: 2,
257+
INSTALLING_UPDATE: 3,
258+
IDLE: 4
259259
},
260260
DEFAULT_UPDATE_DIALOG: {
261261
appendReleaseDescription: false,
@@ -269,4 +269,4 @@ var CodePush = {
269269
}
270270
};
271271

272-
module.exports = CodePush;
272+
module.exports = CodePush;

0 commit comments

Comments
 (0)