mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Added a duplicated item to Queue.txt, reformated existing json sample files.
This commit is contained in:
parent
03dc4a5602
commit
5e3e071692
6 changed files with 337 additions and 104 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue