set hiding interactions counts as default

This commit is contained in:
sk
2022-11-11 14:58:39 +01:00
parent 53cb809996
commit d711ed986c

View File

@@ -25,7 +25,7 @@ public class GlobalUserPreferences{
showReplies=prefs.getBoolean("showReplies", true);
showBoosts=prefs.getBoolean("showBoosts", true);
loadNewPosts=prefs.getBoolean("loadNewPosts", true);
showInteractionCounts=prefs.getBoolean("showInteractionCounts", true);
showInteractionCounts=prefs.getBoolean("showInteractionCounts", false);
theme=ThemePreference.values()[prefs.getInt("theme", 0)];
}