fixup! Fixed: Assume category path from qBittorent starting with '//' is a Windows path

This commit is contained in:
Mark McDowall 2024-07-16 21:00:35 -07:00
parent 6ef1801bd3
commit 75718165d6
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +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);
_logger.Trace("Replacing double forward slashes in path '{0}'. If this is not meant to be a Windows UNC path fix the 'Save Path' in qBittorrent's {1} category", savePath, Settings.TvCategory);
savePath = savePath.Replace('/', '\\');
}