From 81d4279d578254addd4d70e8a99de7f2e266474a Mon Sep 17 00:00:00 2001 From: robertgro <34941707+robertgro@users.noreply.github.com> Date: Sun, 5 Nov 2023 21:46:20 +0100 Subject: [PATCH] Update WatchVideo.vue (#3106) bugfix for PR https://github.com/TeamPiped/Piped/commit/24ffe2ef93c528da8e2dff768b55521345d36785 ("Minimize the video description by default") --- src/components/WatchVideo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue index 41cd1450..eb9fd7a9 100644 --- a/src/components/WatchVideo.vue +++ b/src/components/WatchVideo.vue @@ -416,7 +416,7 @@ export default { this.active = true; this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", false); this.showComments = !this.getPreferenceBoolean("minimizeComments", false); - this.showDesc = !this.getPreferenceBoolean("minimizeDescription", false); + this.showDesc = !this.getPreferenceBoolean("minimizeDescription", true); this.showRecs = !this.getPreferenceBoolean("minimizeRecommendations", false); this.showChapters = !this.getPreferenceBoolean("minimizeChapters", false); if (this.video?.duration) {