Skip to content

Commit

Permalink
! Fix empty playlist thumbnail in single playlist view
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Sep 5, 2023
1 parent 4b2ba55 commit e0348a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/playlist-info/playlist-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}

Expand Down

0 comments on commit e0348a2

Please sign in to comment.