forked from premiere/premiere-libtorrent
fixed missing torrent_checked_alert
This commit is contained in:
parent
eb82e13357
commit
779b006ac0
|
@ -1565,6 +1565,13 @@ namespace aux {
|
||||||
m_queued_for_checking.pop_front();
|
m_queued_for_checking.pop_front();
|
||||||
if (!m_queued_for_checking.empty())
|
if (!m_queued_for_checking.empty())
|
||||||
m_queued_for_checking.front()->start_checking();
|
m_queued_for_checking.front()->start_checking();
|
||||||
|
|
||||||
|
if (m_alerts.should_post(alert::info))
|
||||||
|
{
|
||||||
|
m_alerts.post_alert(torrent_checked_alert(
|
||||||
|
t->get_handle()
|
||||||
|
, "torrent finished checking"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
torrent_handle session_impl::add_torrent(
|
torrent_handle session_impl::add_torrent(
|
||||||
|
|
Loading…
Reference in New Issue