Fix bug where sonos app cannot navigate from track to artist when subsonic returns null artistId on song (#79)

This commit is contained in:
Simon J
2021-11-20 18:22:24 +11:00
committed by GitHub
parent 6321cb71a4
commit 89340dd454
6 changed files with 101 additions and 23 deletions

View File

@@ -25,7 +25,7 @@ export type AuthFailure = {
};
export type ArtistSummary = {
id: string;
id: string | undefined;
name: string;
image: BUrn | undefined;
};