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

Fixed: Allow ports above 32767

pull/6/head
Mark McDowall 12 years ago
parent edf06dda3e
commit 72c7fc2680

@ -548,7 +548,7 @@ namespace NzbDrone.Core.Providers.Core
private int GetValueInt(string key, int defaultValue = 0)
{
return Convert.ToInt16(GetValue(key, defaultValue));
return Convert.ToInt32(GetValue(key, defaultValue));
}
public virtual string GetValue(string key, object defaultValue, bool persist = false)

Loading…
Cancel
Save