forked from premiere/premiere-libtorrent
fixed invalid torrent_status::finished_time
This commit is contained in:
parent
e58e27e83a
commit
1c8a7b6343
|
@ -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)
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue