mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05:00
chore: Chain exceptions when trying to get rss's item size
This commit is contained in:
@@ -165,9 +165,9 @@ namespace NzbDrone.Core.Indexers
|
||||
{
|
||||
releaseInfo.Size = GetSize(item);
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception e)
|
||||
{
|
||||
throw new SizeParsingException("Unable to parse size from: {0}", releaseInfo.Title);
|
||||
throw new SizeParsingException("Unable to parse size from: {0}", e, releaseInfo.Title);
|
||||
}
|
||||
|
||||
return releaseInfo;
|
||||
|
||||
Reference in New Issue
Block a user