From c3104e0210cd8b3ab8cef718f000d48fef50b6ae Mon Sep 17 00:00:00 2001 From: "Vladimir Golovnev (Glassez)" Date: Wed, 22 Jul 2020 15:22:29 +0300 Subject: [PATCH] Update torrent status on move enqueued --- src/base/bittorrent/torrenthandleimpl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/base/bittorrent/torrenthandleimpl.cpp b/src/base/bittorrent/torrenthandleimpl.cpp index cb530b259..ff8e8a813 100644 --- a/src/base/bittorrent/torrenthandleimpl.cpp +++ b/src/base/bittorrent/torrenthandleimpl.cpp @@ -1359,8 +1359,10 @@ void TorrentHandleImpl::resume_impl(bool forced) void TorrentHandleImpl::moveStorage(const QString &newPath, const MoveStorageMode mode) { - if (m_session->addMoveTorrentStorageJob(this, newPath, mode)) + if (m_session->addMoveTorrentStorageJob(this, newPath, mode)) { m_storageIsMoving = true; + updateStatus(); + } } void TorrentHandleImpl::renameFile(const int index, const QString &name)