Do not prepend \\ to network share paths

This commit is contained in:
2025-02-26 20:43:46 +01:00
parent 5249b277ec
commit d545c6ca0f
+1 -1
View File
@@ -12,7 +12,7 @@
QString makeMaxPath(QString path)
{
#ifdef Q_OS_WIN64
if(!path.startsWith("\\\\?\\"))
if(!path.startsWith("\\\\"))
{
QFileInfo info(path);
path = info.absoluteFilePath();