From d711ed986c3b0ce9b8a2a91cfd3cff226508a4c0 Mon Sep 17 00:00:00 2001 From: sk Date: Fri, 11 Nov 2022 14:58:39 +0100 Subject: [PATCH] set hiding interactions counts as default --- .../java/org/joinmastodon/android/GlobalUserPreferences.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java b/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java index 5cabd6833..948dadf82 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java +++ b/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java @@ -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)]; }