- Fix little problem in evenmanager causing this output: "no status, should not happen!!!"

This commit is contained in:
Christophe Dumez 2009-11-19 18:28:30 +00:00
parent b35cc2c9e4
commit ff2fef0dc1

View file

@ -69,11 +69,12 @@ void EventManager::modifiedTorrent(QTorrentHandle h)
case torrent_status::seeding:
event["state"] = QVariant("seeding");
break;
case torrent_status::allocating:
case torrent_status::checking_files:
case torrent_status::queued_for_checking:
case torrent_status::checking_resume_data:
event["state"] = QVariant("checking");
break;
case torrent_status::allocating:
case torrent_status::downloading:
case torrent_status::downloading_metadata:
if(h.download_payload_rate() > 0)