make isFirstRun a precondition of clearing pending updates in notifyApplicationReady

This commit is contained in:
Geoffrey Goh
2016-02-05 18:30:29 -08:00
parent 9b00cc93e7
commit 02e556d73d
2 changed files with 8 additions and 2 deletions

View File

@@ -539,7 +539,10 @@ public class CodePush {
@ReactMethod
public void notifyApplicationReady(Promise promise) {
removePendingUpdate();
if (didUpdate) {
removePendingUpdate();
}
promise.resolve("");
}