From 6007e46746acfbc53a1bdc96eac2e411293a426e Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 27 Mar 2023 07:38:44 -0700 Subject: [PATCH] Fixed: Removed hardcoded dot prefix from the transmission category in status Closes #5510 --- .../Download/Clients/Transmission/TransmissionBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/Transmission/TransmissionBase.cs b/src/NzbDrone.Core/Download/Clients/Transmission/TransmissionBase.cs index ef8af9011..586a3618c 100644 --- a/src/NzbDrone.Core/Download/Clients/Transmission/TransmissionBase.cs +++ b/src/NzbDrone.Core/Download/Clients/Transmission/TransmissionBase.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using FluentValidation.Results; @@ -176,7 +176,7 @@ namespace NzbDrone.Core.Download.Clients.Transmission if (Settings.TvCategory.IsNotNullOrWhiteSpace()) { - destDir = string.Format("{0}/.{1}", destDir, Settings.TvCategory); + destDir = string.Format("{0}/{1}", destDir, Settings.TvCategory); } return new DownloadClientInfo