Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
fix bug from merge conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
geof90 committed Jun 28, 2016
1 parent c7fa9ac commit 8624904
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public void recordStatusReported(ReadableMap statusReport) {
public void restartApp(boolean onlyIfUpdateIsPending, Promise promise) {
// If this is an unconditional restart request, or there
// is current pending update, then reload the app.
if (!onlyIfUpdateIsPending || CodePush.this.isPendingUpdate(null)) {
if (!onlyIfUpdateIsPending || mSettingsManager.isPendingUpdate(null)) {
loadBundle();
promise.resolve(true);
return;
Expand Down

0 comments on commit 8624904

Please sign in to comment.