fixed invalid torrent_status::finished_time

This commit is contained in:
Arvid Norberg 2011-10-26 00:58:21 +00:00
parent e58e27e83a
commit 1c8a7b6343
2 changed files with 2 additions and 1 deletions

View File

@ -94,6 +94,7 @@
incoming connection
* added more detailed instrumentation of the disk I/O thread
* fixed invalid torrent_status::finished_time
* fixed bugs in dont-have and upload-only extension messages
* don't open files in random-access mode (speeds up hashing)

View File

@ -8009,7 +8009,7 @@ ctx->set_verify_callback(verify_function, ec);
st->all_time_download = m_total_downloaded;
// activity time
st->active_time = m_active_time;
st->finished_time = m_finished_time;
st->active_time = m_active_time;
st->seeding_time = m_seeding_time;
st->time_since_upload = m_last_upload;