mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
Fix adjustActualSavePath() when torrent is moving.
This commit is contained in:
parent
a55a27508a
commit
9c28977001
@ -1691,6 +1691,14 @@ void TorrentHandle::removeExtensionsFromIncompleteFiles()
|
||||
}
|
||||
|
||||
void TorrentHandle::adjustActualSavePath()
|
||||
{
|
||||
if (!isMoveInProgress())
|
||||
adjustActualSavePath_impl();
|
||||
else
|
||||
m_moveStorageTriggers.append(boost::bind(&TorrentHandle::adjustActualSavePath_impl, this));
|
||||
}
|
||||
|
||||
void TorrentHandle::adjustActualSavePath_impl()
|
||||
{
|
||||
QString path;
|
||||
if (!useTempPath()) {
|
||||
|
@ -333,6 +333,7 @@ namespace BitTorrent
|
||||
void resolveCountries(bool b);
|
||||
void adjustSavePath();
|
||||
void adjustActualSavePath();
|
||||
void adjustActualSavePath_impl();
|
||||
void moveStorage(const QString &newPath);
|
||||
void appendExtensionsToIncompleteFiles();
|
||||
void removeExtensionsFromIncompleteFiles();
|
||||
|
Loading…
Reference in New Issue
Block a user