Skip to content

Commit

Permalink
[web] Fix cover artwork not being displayed in album lists #1848
Browse files Browse the repository at this point in the history
  • Loading branch information
hacketiwack authored Jan 30, 2025
1 parent 6fbf1f0 commit 1d529e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-src/src/stores/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const useSettingsStore = defineStore('SettingsStore', {
state.setting('webinterface', 'show_composer_now_playing')?.value ??
false,
show_cover_artwork_in_album_lists: (state) =>
state.setting('webinterface', 'show_cover_artwork_in_album_lists')
state.setting('artwork', 'show_cover_artwork_in_album_lists')
?.value ?? false,
show_filepath_now_playing: (state) =>
state.setting('webinterface', 'show_filepath_now_playing')?.value ??
Expand Down

0 comments on commit 1d529e4

Please sign in to comment.