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

Added some validation to Newznab.

pull/3113/head
Mark McDowall 13 years ago
parent 92c6451bfc
commit 15279d3e97

@ -12,10 +12,12 @@ namespace NzbDrone.Core.Repository
public Boolean Enable { get; set; }
[StringLength(100, MinimumLength = 2)]
[DisplayFormat(ConvertEmptyStringToNull = false)]
public String Name { get; set; }
[DisplayFormat(ConvertEmptyStringToNull = false)]
[RegularExpression(@"^http[s]?://.+")]
public String Url { get; set; }
public String ApiKey { get; set; }

Loading…
Cancel
Save