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

Merge branch 'develop' of https://github.com/galli-leo/Radarr into develop

pull/24/head
Leonardo Galli 8 years ago
commit e68653463d

@ -346,7 +346,9 @@ namespace NzbDrone.Core.Organizer
public static string CleanFolderName(string name)
{
name = FileNameCleanupRegex.Replace(name, match => match.Captures[0].Value[0].ToString());
return name.Trim(' ', '.');
name = name.Trim(' ', '.');
return name.Replace(":", " -");
}
private void AddSeriesTokens(Dictionary<string, Func<TokenMatch, string>> tokenHandlers, Series series)

Loading…
Cancel
Save