Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/bd19c89f6e65da74feeeb5f3487b3cc3e7efce62 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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