From 157ce2b0d55c0261e5d331cec1cbda7a86cd5e74 Mon Sep 17 00:00:00 2001 From: Kavin <20838718+FireMasterK@users.noreply.github.com> Date: Mon, 24 Oct 2022 10:49:29 +0100 Subject: [PATCH] Ensure comments are loaded by default. --- src/components/PreferencesPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PreferencesPage.vue b/src/components/PreferencesPage.vue index 887694f9..879f5119 100644 --- a/src/components/PreferencesPage.vue +++ b/src/components/PreferencesPage.vue @@ -501,7 +501,7 @@ export default { this.bufferingGoal = Math.max(Number(localStorage.getItem("bufferGoal")), 10); this.countrySelected = this.getPreferenceString("region", "US"); this.defaultHomepage = this.getPreferenceString("homepage", "trending"); - this.minimizeComments = this.getPreferenceBoolean("minimizeComments", true); + this.minimizeComments = this.getPreferenceBoolean("minimizeComments", false); this.minimizeDescription = this.getPreferenceBoolean("minimizeDescription", false); this.minimizeRecommendations = this.getPreferenceBoolean("minimizeRecommendations", false); this.watchHistory = this.getPreferenceBoolean("watchHistory", false);