Skip to content

Commit

Permalink
use https as option for qbit torrent
Browse files Browse the repository at this point in the history
  • Loading branch information
SirSparkles committed Jan 28, 2022
1 parent 0795b61 commit a6805b6
Show file tree
Hide file tree
Showing 5 changed files with 1,313 additions and 1,099 deletions.
2 changes: 1 addition & 1 deletion TVRename/DownloadProvider/qBitTorrent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private static (string hashCode, string torrentName, bool completed) ExtractTorr
[NotNull]
private static string GetApiUrl(qBitTorrentAPIPath path)
{
string url = $"http://{TVSettings.Instance.qBitTorrentHost}:{TVSettings.Instance.qBitTorrentPort}/";
string url = $"{TVSettings.Instance.qBitTorrentProtocol}://{TVSettings.Instance.qBitTorrentHost}:{TVSettings.Instance.qBitTorrentPort}/";

switch (TVSettings.Instance.qBitTorrentAPIVersion)
{
Expand Down
Loading

0 comments on commit a6805b6

Please sign in to comment.