mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Return 404 when artwork is not available in /share/img
endpoint
This commit is contained in:
parent
128b626ec9
commit
d8e794317f
13 changed files with 75 additions and 90 deletions
|
@ -95,7 +95,7 @@ const PlaylistSongs = ({ playlistId, readOnly, actions, ...props }) => {
|
|||
|
||||
const onAddToPlaylist = useCallback(
|
||||
(pls) => {
|
||||
if (pls.id === playlistId) {
|
||||
if (pls.artID === playlistId) {
|
||||
refetch()
|
||||
}
|
||||
},
|
||||
|
@ -224,7 +224,7 @@ const SanitizedPlaylistSongs = (props) => {
|
|||
<>
|
||||
{loaded && (
|
||||
<PlaylistSongs
|
||||
playlistId={props.id}
|
||||
playlistId={props.artID}
|
||||
actions={props.actions}
|
||||
pagination={props.pagination}
|
||||
{...rest}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue