- Torrentless downloads are no longer added in pause (temporary workaround as I think it is better not to start in paused state).

This commit is contained in:
Christophe Dumez 2009-08-17 05:23:58 +00:00
parent e619b6977a
commit d132d50f4d

View file

@ -417,7 +417,7 @@ QTorrentHandle bittorrent::addMagnetUri(QString magnet_uri, bool resumed) {
else
p.storage_mode = storage_mode_sparse;
// Start in pause
//p.paused = true;
p.paused = false;
p.duplicate_is_error = false; // Already checked
p.auto_managed = false; // Because it is added in paused state
// Adding torrent to bittorrent session
@ -1341,6 +1341,7 @@ void bittorrent::readAlerts() {
}
}
emit torrentFinishedChecking(h);
emit metadataReceived(h);
}
}
a = s->pop_alert();