mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Use truncated torrent hash in temp path
This commit is contained in:
@@ -333,7 +333,9 @@ QString Session::tempPath() const
|
||||
|
||||
QString Session::torrentTempPath(const InfoHash &hash) const
|
||||
{
|
||||
return m_tempPath + QString(hash) + "/";
|
||||
return m_tempPath
|
||||
+ static_cast<QString>(hash).left(7)
|
||||
+ "/";
|
||||
}
|
||||
|
||||
bool Session::isValidCategoryName(const QString &name)
|
||||
|
||||
Reference in New Issue
Block a user