Update PlexRssImportParser.cs
fix support for TMDB ID plex RSS import
This commit is contained in:
parent
5328fb4ab3
commit
37ff5f7be4
|
@ -47,13 +47,13 @@ namespace NzbDrone.Core.ImportLists.Rss.Plex
|
|||
|
||||
if (int.TryParse(guid.Replace("tmdb://", ""), out var tmdbId))
|
||||
{
|
||||
info.TmdbId = tvdbId;
|
||||
info.TmdbId = tmdbId;
|
||||
}
|
||||
}
|
||||
|
||||
if (info.ImdbId.IsNullOrWhiteSpace() && info.TvdbId == 0)
|
||||
if (info.ImdbId.IsNullOrWhiteSpace() && info.TvdbId == 0 && info.TmdbId == 0)
|
||||
{
|
||||
throw new UnsupportedFeedException("Each item in the RSS feed must have a guid element with a IMDB ID or TVDB ID");
|
||||
throw new UnsupportedFeedException("Each item in the RSS feed must have a guid element with a IMDB ID or TVDB ID or TMDB ID");
|
||||
}
|
||||
|
||||
return info;
|
||||
|
|
Loading…
Reference in New Issue