File tree 2 files changed +5
-2
lines changed
java/org/quantumbadger/redreader/common
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ /Alpha 348 (2023-12-29)
2
+ Fix feature flag upgrade behaviour for post title action
3
+
1
4
/Alpha 347 (2023-12-29)
2
5
Added a preference to automatically open the first image in an album
3
6
Made links blue again in dark themes
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ private enum FeatureFlag {
52
52
REPLY_IN_POST_ACTION_MENU_FEATURE ("replyInPostActionMenuFeature" ),
53
53
MAIN_MENU_FIND_SUBREDDIT_FEATURE ("mainMenuFindSubreddit" ),
54
54
OPEN_COMMENT_EXTERNALLY_FEATURE ("openCommentExternallyFeature" ),
55
- POST_TITLE_TAP_ACTION_FEATURE ("postTitleTapAction " );
55
+ POST_TITLE_TAP_ACTION_FEATURE ("postTitleTapActionFeature " );
56
56
57
57
@ NonNull private final String id ;
58
58
@@ -279,7 +279,7 @@ public static void handleUpgrade(@NonNull final Context context) {
279
279
280
280
prefs .edit ().putString (
281
281
context .getString (R .string .pref_behaviour_post_tap_action_key ),
282
- "title_comments "
282
+ "comments "
283
283
).apply ();
284
284
}
285
285
}
You can’t perform that action at this time.
0 commit comments