1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

Prevent return cached "sequential download" state. Closes #4167.

This commit is contained in:
Vladimir Golovnev (Glassez) 2015-11-26 15:09:11 +03:00
parent 67e90d8d2a
commit e804e6e91a

View File

@ -1128,6 +1128,7 @@ void TorrentHandle::setSequentialDownload(bool b)
{ {
if (b != isSequentialDownload()) { if (b != isSequentialDownload()) {
SAFE_CALL(set_sequential_download, b); SAFE_CALL(set_sequential_download, b);
m_nativeStatus.sequential_download = b; // prevent return cached value
} }
} }