Browse Source

Clear missing files flag when resuming or force rechecking. Fixes issues in #2750.

adaptive-webui-19844
sledgehammer999 10 years ago
parent
commit
3f8e76ce93
  1. 1
      src/core/bittorrent/torrenthandle.cpp

1
src/core/bittorrent/torrenthandle.cpp

@ -1206,6 +1206,7 @@ void TorrentHandle::resume(bool forced) @@ -1206,6 +1206,7 @@ void TorrentHandle::resume(bool forced)
try {
if (hasError())
m_nativeHandle.clear_error();
m_hasMissingFiles = false;
m_nativeHandle.set_upload_mode(false);
m_nativeHandle.auto_managed(!forced);
m_nativeHandle.resume();

Loading…
Cancel
Save