mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 00:34:37 +02:00
Added a duplicated item to Queue.txt, reformated existing json sample files.
This commit is contained in:
@@ -190,6 +190,18 @@ namespace NzbDrone.Core.Providers.Indexer
|
||||
|
||||
}
|
||||
}
|
||||
catch(WebException webException)
|
||||
{
|
||||
if (webException.Message.Contains("503"))
|
||||
{
|
||||
_logger.Warn("{0} server is currently unbelievable. {1}", Name, webException.Message);
|
||||
}
|
||||
else
|
||||
{
|
||||
webException.Data.Add("FeedUrl", url);
|
||||
_logger.ErrorException("An error occurred while processing feed: " + Name, webException);
|
||||
}
|
||||
}
|
||||
catch (Exception feedEx)
|
||||
{
|
||||
feedEx.Data.Add("FeedUrl", url);
|
||||
|
Reference in New Issue
Block a user