fix: ignore errors deleting untitled album (#27020)

This commit is contained in:
Jason Rasmussen
2026-03-19 12:55:43 -04:00
committed by GitHub
parent b30373b24f
commit 29000461c2
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -273,7 +273,7 @@ export const handleDeleteAlbum = async (album: AlbumResponseDto, options?: { pro
}
return true;
} catch (error) {
handleError(error, $t('errors.unable_to_delete_album'));
handleError(error, $t('errors.unable_to_delete_album'), { notify });
return false;
}
};