make sure torrent is unpaused if added/followed later on

This commit is contained in:
Miguel Freitas 2014-03-01 10:05:30 -03:00
parent adc9e82f3a
commit 4c561ceb74

View File

@ -99,16 +99,16 @@ torrent_handle startTorrentUser(std::string const &username, bool following)
load_file(filename.c_str(), tparams.resume_data);
m_userTorrent[username] = ses->add_torrent(tparams);
if( following ) {
m_userTorrent[username].auto_managed(false);
m_userTorrent[username].resume();
} else {
if( !following ) {
m_userTorrent[username].auto_managed(true);
}
m_userTorrent[username].force_dht_announce();
}
if( following )
if( following ) {
m_userTorrent[username].set_following(true);
m_userTorrent[username].auto_managed(false);
m_userTorrent[username].resume();
}
return m_userTorrent[username];
}