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

IISController now wraps config path (in argument) with quotes to allow for paths with spaces

pull/3113/head
Mark McDowall 14 years ago
parent 4e5c354cd6
commit 19c7702647

File diff suppressed because it is too large Load Diff

@ -35,7 +35,7 @@ namespace NzbDrone
IISProcess = new Process();
IISProcess.StartInfo.FileName = IISExe;
IISProcess.StartInfo.Arguments = String.Format("/config:{0} /trace:i", IISConfigPath);//"/config:"""" /trace:i";
IISProcess.StartInfo.Arguments = String.Format("/config:\"{0}\" /trace:i", IISConfigPath);//"/config:"""" /trace:i";
IISProcess.StartInfo.WorkingDirectory = Config.ProjectRoot;
IISProcess.StartInfo.UseShellExecute = false;

Loading…
Cancel
Save