fixup! Fixed: Assume category path from qBittorent starting with '//' is a Windows path
This commit is contained in:
parent
40baa4f08c
commit
6ef1801bd3
|
@ -381,6 +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);
|
||||||
savePath = savePath.Replace('/', '\\');
|
savePath = savePath.Replace('/', '\\');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue