chore: Chain exceptions when trying to get rss's item size

pull/7741/head
Jayson Reis 2 years ago committed by Qstick
parent 15e5ad5f84
commit bd19c89f6e

@ -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;

Loading…
Cancel
Save