From 522ceefda66218fdbc48eead7a4e1216000c4faf Mon Sep 17 00:00:00 2001 From: robertgro <34941707+robertgro@users.noreply.github.com> Date: Sun, 5 Nov 2023 18:11:50 +0100 Subject: [PATCH] Update WatchVideo.vue 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) {