SettingsConstants: fix home tab filters (#1906)

Showing repeats was swapped with showing replies.
This commit is contained in:
Karol Kosek 2020-08-21 09:15:53 +02:00 committed by Alibek Omarov
parent e809408221
commit de737e887f
1 changed files with 2 additions and 2 deletions

View File

@ -61,6 +61,6 @@ object PrefKeys {
const val NOTIFICATION_FILTER_EMOJI_REACTIONS = "notificationFilterEmojis" const val NOTIFICATION_FILTER_EMOJI_REACTIONS = "notificationFilterEmojis"
const val NOTIFICATIONS_FILTER_FOLLOWS = "notificationFilterFollows" const val NOTIFICATIONS_FILTER_FOLLOWS = "notificationFilterFollows"
const val TAB_FILTER_HOME_REPLIES = "tabFilterHomeBoosts" const val TAB_FILTER_HOME_REPLIES = "tabFilterHomeReplies"
const val TAB_FILTER_HOME_BOOSTS = "tabFilterHomeReplies" const val TAB_FILTER_HOME_BOOSTS = "tabFilterHomeBoosts"
} }