mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-25 17:27:18 +00:00
Added fix for HttpProvider.PostCommand so it uses a valid URL.
This commit is contained in:
parent
b239e28898
commit
4eea6b8c6b
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ namespace NzbDrone.Core.Providers.Core
|
||||||
|
|
||||||
public virtual string PostCommand(string address, string username, string password, string command)
|
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);
|
Logger.Trace("Posting command: {0}, to {1}", command, address);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue