mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
Fix wrong parent path
This commit is contained in:
@@ -162,8 +162,8 @@ Path Path::parentPath() const
|
|||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
// should be `c:/` instead of `c:`
|
// should be `c:/` instead of `c:`
|
||||||
// Windows "drive letter" is limited to one alphabet
|
// Windows "drive letter" is limited to one alphabet
|
||||||
if ((slashIndex == 2) && (m_pathStr.at(1) == u':'))
|
if ((slashIndex == 2) && hasDriveLetter(m_pathStr))
|
||||||
return createUnchecked(m_pathStr.left(slashIndex + 1));
|
return (m_pathStr.size() == 3) ? Path() : createUnchecked(m_pathStr.left(slashIndex + 1));
|
||||||
#endif
|
#endif
|
||||||
return createUnchecked(m_pathStr.left(slashIndex));
|
return createUnchecked(m_pathStr.left(slashIndex));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user