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

Commit 4ff77d8

Browse files
committed
feedback
1 parent 2177a11 commit 4ff77d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CodePush.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ const sync = (() => {
196196
}
197197

198198
syncInProgress = true;
199-
const syncInternalPromise = syncInternal(options, syncStatusChangeCallback, downloadProgressCallback);
200-
syncInternalPromise
199+
const syncPromise = syncInternal(options, syncStatusChangeCallback, downloadProgressCallback);
200+
syncPromise
201201
.then(setSyncCompleted)
202202
.catch(setSyncCompleted)
203203
.done();
204204

205-
return syncInternalPromise;
205+
return syncPromise;
206206
};
207207
})();
208208

0 commit comments

Comments
 (0)