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

Added fix for HttpProvider.PostCommand so it uses a valid URL.

pull/6/head
Mark McDowall 14 years ago
parent b239e28898
commit 4eea6b8c6b

@ -68,7 +68,7 @@ namespace NzbDrone.Core.Providers.Core
public virtual string PostCommand(string address, string username, string password, string command)
{
address += "/jsonrpc";
address = String.Format("http://{0}/jsonrpc", address);
Logger.Trace("Posting command: {0}, to {1}", command, address);

Loading…
Cancel
Save