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

Commit

Permalink
[xdl] fix updates ON_ERROR_RECOVERY setting for SDK 39 (#2856)
Browse files Browse the repository at this point in the history
  • Loading branch information
esamelson authored Nov 6, 2020
1 parent 8313c11 commit ee86468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/xdl/src/detach/AndroidShellApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ export async function runShellAppModificationsAsync(context, sdkVersion, buildMo
const splashBackgroundColor = getSplashScreenBackgroundColor(manifest);
const updatesDisabled = manifest.updates && manifest.updates.enabled === false;
const updatesCheckAutomaticallyDisabled =
manifest.updates && manifest.checkAutomatically === 'ON_ERROR_RECOVERY';
manifest.updates && manifest.updates.checkAutomatically === 'ON_ERROR_RECOVERY';
const fallbackToCacheTimeout = manifest.updates && manifest.updates.fallbackToCacheTimeout;

// Clean build directories
Expand Down

0 comments on commit ee86468

Please sign in to comment.