Merge pull request #14969 from theguymadmax/fix-artist-external-id

Fix artist external Url
This commit is contained in:
Bond-009 2025-10-10 17:49:39 +02:00 committed by GitHub
commit 9ef3706b44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ public class AudioDbArtistExternalUrlProvider : IExternalUrlProvider
var baseUrl = "https://www.theaudiodb.com/";
switch (item)
{
case MusicAlbum:
case MusicArtist:
case Person:
yield return baseUrl + $"artist/{externalId}";
break;

View File

@ -21,7 +21,7 @@ public class MusicBrainzArtistExternalUrlProvider : IExternalUrlProvider
{
switch (item)
{
case MusicAlbum:
case MusicArtist:
case Person:
yield return Plugin.Instance!.Configuration.Server + $"/artist/{externalId}";