mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
Add title to invalid Plex RSS item log
Co-authored-by: bakerboy448 <55419169+bakerboy448@users.noreply.github.com>
This commit is contained in:
parent
3d2ca830bc
commit
646d271e81
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ protected override ImportListMovie ProcessItem(XElement item)
|
|||
|
||||
if (info.ImdbId.IsNullOrWhiteSpace() && info.TmdbId == 0)
|
||||
{
|
||||
_logger.Warn("Each item in the RSS feed must have a guid element with a IMDB ID or TMDB ID");
|
||||
_logger.Warn("Each item in the RSS feed must have a guid element with a IMDB ID or TMDB ID: '{0}'", info.Title);
|
||||
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue