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

19 lines
356 B

using System;
namespace NzbDrone.Common
{
public static class TryParseExtension
{
public static Nullable<int> ParseInt32(this string source)
{
Int32 result = 0;
if (Int32.TryParse(source, out result))
{
return result;
}
return null;
}
}
}