From 6ef1801bd3bb7d9a39fa958d143550e52469eaec Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 16 Jul 2024 19:18:12 -0700 Subject: [PATCH] fixup! Fixed: Assume category path from qBittorent starting with '//' is a Windows path --- src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs index f56a648b9..3ce7d3f3c 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -381,6 +381,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent if (savePath.StartsWith("//")) { + _logger.Trace("Replacing slashes in probable Windows UNC path '{0}'. If this is not meant to be a Windows UNC path fix your qBittorrent configuration", savePath); savePath = savePath.Replace('/', '\\'); }