Return 404 when artwork is not available in /share/img endpoint

This commit is contained in:
Deluan 2023-01-31 18:22:49 -05:00 committed by Deluan Quintão
parent 128b626ec9
commit d8e794317f
13 changed files with 75 additions and 90 deletions

View file

@ -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}