Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/0208ae8347252f8bb28a52eed3d20362cd5641e3/NzbDrone.Common/TryParseExtension.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/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;
}
}
}