Skip to content

Commit f97b60a

Browse files
Merge pull request meteor#14 from jackkav/patch-1
Corrected what appears to be a logic error
2 parents dd2d615 + d55ad73 commit f97b60a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/android/WebAppLocalServer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ private void revertToLastKnownGoodVersion() {
322322
}
323323

324324
// Else, revert to the initial asset bundle, unless that is what we are currently serving
325-
if (!currentAssetBundle.equals(assetBundleManager.initialAssetBundle)) {
325+
else if (!currentAssetBundle.equals(assetBundleManager.initialAssetBundle)) {
326326
pendingAssetBundle = assetBundleManager.initialAssetBundle;
327327
}
328328

0 commit comments

Comments
 (0)