Increasing count of similar artists to 50

This commit is contained in:
simojenki
2021-07-27 07:28:46 +10:00
parent 95c44ca767
commit a40aeb52ae
2 changed files with 16 additions and 0 deletions

View File

@@ -389,6 +389,7 @@ export class Navidrome implements MusicService {
getArtistInfo = (credentials: Credentials, id: string): Promise<ArtistInfo> =>
this.getJSON<GetArtistInfoResponse>(credentials, "/rest/getArtistInfo", {
id,
count: 50,
}).then((it) => ({
image: {
small: validate(it.artistInfo.smallImageUrl),