From 2bf3b9e7dd799953b4f5c53db6212bf720ed41f1 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Sun, 12 Mar 2017 11:18:51 +0100 Subject: [PATCH] fixed typo setting custom directory for rtorrent. --- src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs index e22b9d469..749a68d7a 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs @@ -157,7 +157,7 @@ namespace NzbDrone.Core.Download.Clients.RTorrent if (directory.IsNotNullOrWhiteSpace()) { - result.Add("d.directory.set=" + label); + result.Add("d.directory.set=" + directory); } return result.ToArray();