mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
Fixed: Xbmc metadata no longer fails if an episode has no rating.
This commit is contained in:
@@ -118,10 +118,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||
episode.AirDate = oracleEpisode.AirDate;
|
||||
episode.AirDateUtc = oracleEpisode.AirDateUtc;
|
||||
|
||||
if (oracleEpisode.Rating != null)
|
||||
{
|
||||
episode.Ratings = MapRatings(oracleEpisode.Rating);
|
||||
}
|
||||
episode.Ratings = MapRatings(oracleEpisode.Rating);
|
||||
|
||||
//Don't include series fanart images as episode screenshot
|
||||
if (oracleEpisode.Image != null)
|
||||
|
||||
Reference in New Issue
Block a user