Fixed: UnsupportedFeedException should log error for each item (#77)

This commit is contained in:
Qstick
2017-08-31 21:28:32 -04:00
committed by GitHub
parent 52a4227bc4
commit b0cde61dd0
2 changed files with 22 additions and 2 deletions
+5
View File
@@ -63,6 +63,11 @@ namespace NzbDrone.Core.Indexers
releases.AddIfNotNull(reportInfo);
}
catch (UnsupportedFeedException itemEx)
{
itemEx.Data.Add("Item", item.Title());
throw;
}
catch (Exception itemEx)
{
itemEx.Data.Add("Item", item.Title());