We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23fcfd8 commit 517cb40Copy full SHA for 517cb40
src/main/java/org/quantumbadger/redreader/common/FeatureFlagHandler.java
@@ -292,11 +292,10 @@ public static void handleUpgrade(@NonNull final Context context) {
292
if(getAndSetFeatureFlag(prefs, FeatureFlag.DEFAULT_PREF_VIDEO_PLAYBACK_CONTROLS)
293
== FeatureFlagStatus.UPGRADE_NEEDED) {
294
295
- prefs.edit()
296
- .putBoolean(
297
- context.getString(R.string.pref_behaviour_video_playback_controls_key),
298
- true)
299
- .apply();
+ prefs.edit().putBoolean(
+ context.getString(R.string.pref_behaviour_video_playback_controls_key),
+ true)
+ .apply();
300
}
301
302
if(getAndSetFeatureFlag(prefs, FeatureFlag.DEFAULT_PREF_CUSTOM_TABS)
0 commit comments