Skip to content

Commit

Permalink
Removing the place where reading the feature flag from
Browse files Browse the repository at this point in the history
  • Loading branch information
markvdouw committed Jan 18, 2024
1 parent eb40eae commit f52c441
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,7 @@ private synchronized void updateCoreConfig(JSONObject responseJSON, boolean newC
mLogUnhandledExceptions = responseJSON.getString(KEY_UNHANDLED_EXCEPTIONS);
}

if (responseJSON.has(ENABLE_BACKGROUND_BATCHING)) {
enableBackgroundBatchingUpload = responseJSON.getBoolean(ENABLE_BACKGROUND_BATCHING);
}
//TODO Read from backgroundEventBatching feature flag
editor.putBoolean(ENABLE_BACKGROUND_BATCHING, enableBackgroundBatchingUpload);

if (responseJSON.has(KEY_PUSH_MESSAGES) && newConfig) {
Expand Down

0 comments on commit f52c441

Please sign in to comment.