Browse Source

Fix regression on resuming torrents without metadata

adaptive-webui-19844
thalieht 6 years ago
parent
commit
d9416299f4
  1. 2
      src/base/bittorrent/torrenthandle.cpp

2
src/base/bittorrent/torrenthandle.cpp

@ -224,7 +224,7 @@ TorrentHandle::TorrentHandle(Session *session, const libtorrent::torrent_handle
if (params.paused) { if (params.paused) {
m_startupState = Started; m_startupState = Started;
} }
else if (!params.restored) { else if (!params.restored || !hasMetadata()) {
// Resume torrent because it was added in "resumed" state // Resume torrent because it was added in "resumed" state
// but it's actually paused during initialization // but it's actually paused during initialization
m_startupState = Starting; m_startupState = Starting;

Loading…
Cancel
Save