mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
fixed media cover download issue
This commit is contained in:
parent
e708a17c6a
commit
233def11c7
4 changed files with 17 additions and 6 deletions
|
@ -6,6 +6,7 @@ using NzbDrone.Common.Messaging;
|
|||
using NzbDrone.Core.MetadataSource;
|
||||
using NzbDrone.Core.Tv.Commands;
|
||||
using NzbDrone.Core.Tv.Events;
|
||||
using NzbDrone.Common;
|
||||
|
||||
namespace NzbDrone.Core.Tv
|
||||
{
|
||||
|
@ -43,10 +44,16 @@ namespace NzbDrone.Core.Tv
|
|||
|
||||
foreach (var series in allSeries)
|
||||
{
|
||||
RefreshSeriesInfo(series);
|
||||
try
|
||||
{
|
||||
RefreshSeriesInfo(series);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
_logger.ErrorException("Couldn't refresh info for {0}".Inject(series.Title), e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void HandleAsync(SeriesAddedEvent message)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue