fixup! Fixed: Assume category path from qBittorent starting with '//' is a Windows path
This commit is contained in:
parent
6ef1801bd3
commit
75718165d6
|
@ -381,7 +381,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
||||||
|
|
||||||
if (savePath.StartsWith("//"))
|
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('/', '\\');
|
savePath = savePath.Replace('/', '\\');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue