Skip to content

Commit

Permalink
fix: set js delta bundle default value to false
Browse files Browse the repository at this point in the history
  • Loading branch information
wojteg1337 committed May 14, 2019
1 parent de0d7cf commit 9dc6c71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public void setElementInspectorEnabled(boolean enabled) {

@SuppressLint("SharedPreferencesUse")
public boolean isBundleDeltasEnabled() {
return mPreferences.getBoolean(PREFS_JS_BUNDLE_DELTAS_KEY, true);
return mPreferences.getBoolean(PREFS_JS_BUNDLE_DELTAS_KEY, false);
}

@SuppressLint("SharedPreferencesUse")
Expand Down

0 comments on commit 9dc6c71

Please sign in to comment.