Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/2ae924db1993fdb425c16a50f115a1078d3dc9e9 You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/1741/head
Jamie 8 years ago
parent fc40775af1
commit 2ae924db19

@ -228,7 +228,7 @@ namespace Ombi.Schedule.Jobs.Ombi
var currentLocation = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
var processName = (settings.ProcessName.HasValue() ? settings.ProcessName : "Ombi");
return string.Join(" ", currentLocation, processName, url.Value, storage.Value);
return string.Join(" ", currentLocation, processName, url?.Value ?? string.Empty, storage?.Value ?? String.Empty);
}
private void RunScript(UpdateSettings settings, string downloadUrl)

Loading…
Cancel
Save