From e0348a2758e503a1d7f9d772499b9a1f7c71bbf2 Mon Sep 17 00:00:00 2001 From: PikachuEXE Date: Tue, 5 Sep 2023 10:57:37 +0800 Subject: [PATCH] ! Fix empty playlist thumbnail in single playlist view --- src/renderer/components/playlist-info/playlist-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/playlist-info/playlist-info.js b/src/renderer/components/playlist-info/playlist-info.js index 8289ecbe51bc3..a9a3d147a46a0 100644 --- a/src/renderer/components/playlist-info/playlist-info.js +++ b/src/renderer/components/playlist-info/playlist-info.js @@ -138,7 +138,7 @@ export default defineComponent({ }, thumbnail: function () { - if (this.thumbnailPreference === 'hidden') { + if (this.thumbnailPreference === 'hidden' || this.firstVideoId === '') { return require('../../assets/img/thumbnail_placeholder.svg') }