Skip to content

Commit

Permalink
Fixed: Correctly map artist logos to clearlogo type
Browse files Browse the repository at this point in the history
Closes #2627
  • Loading branch information
Qstick committed Feb 4, 2024
1 parent 6e43d8a commit aecf5bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs
Expand Up @@ -624,7 +624,8 @@ private static MediaCoverTypes MapCoverType(string coverType)
case "disc":
return MediaCoverTypes.Disc;
case "logo":
return MediaCoverTypes.Logo;
case "clearlogo":
return MediaCoverTypes.Clearlogo;
default:
return MediaCoverTypes.Unknown;
}
Expand Down

0 comments on commit aecf5bb

Please sign in to comment.