1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Map Clearlogo images to cover type

(cherry picked from commit 809788eb2ed7e448f7f23101ae535533de57cd02)
This commit is contained in:
Mark McDowall 2023-09-10 13:05:41 -07:00 committed by Qstick
parent e715557a0d
commit b48b970f25

View File

@ -661,6 +661,8 @@ private static MediaCoverTypes MapCoverType(string coverType)
return MediaCoverTypes.Headshot;
case "fanart":
return MediaCoverTypes.Fanart;
case "clearlogo":
return MediaCoverTypes.Clearlogo;
default:
return MediaCoverTypes.Unknown;
}