mirror of
https://github.com/Radarr/Radarr
synced 2025-02-23 23:01:10 +00:00
parent
3248e7f476
commit
2fcbac49c7
1 changed files with 12 additions and 4 deletions
|
@ -30,14 +30,22 @@ protected override ImportListMovie ProcessItem(XElement item)
|
|||
|
||||
var guid = item.TryGetValue("guid", string.Empty);
|
||||
|
||||
if (guid.IsNotNullOrWhiteSpace() && guid.StartsWith("imdb://"))
|
||||
if (guid.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
info.ImdbId = Parser.Parser.ParseImdbId(guid.Replace("imdb://", ""));
|
||||
if (guid.StartsWith("imdb://"))
|
||||
{
|
||||
info.ImdbId = Parser.Parser.ParseImdbId(guid.Replace("imdb://", ""));
|
||||
}
|
||||
|
||||
if (int.TryParse(guid.Replace("tmdb://", ""), out var tmdbId))
|
||||
{
|
||||
info.TmdbId = tmdbId;
|
||||
}
|
||||
}
|
||||
|
||||
if (info.ImdbId.IsNullOrWhiteSpace())
|
||||
if (info.ImdbId.IsNullOrWhiteSpace() && info.TmdbId == 0)
|
||||
{
|
||||
throw new UnsupportedFeedException("Each item in the RSS feed must have a guid element with a IMDB ID");
|
||||
throw new UnsupportedFeedException("Each item in the RSS feed must have a guid element with a IMDB ID or TMDB ID");
|
||||
}
|
||||
|
||||
return info;
|
||||
|
|
Loading…
Reference in a new issue