diff --git a/src/core/download_factory.cc b/src/core/download_factory.cc index f19a4812..b1bdd64b 100644 --- a/src/core/download_factory.cc +++ b/src/core/download_factory.cc @@ -419,7 +419,7 @@ DownloadFactory::initialize_rtorrent(Download* download, torrent::Object* rtorre download->info()->mutable_up_rate()->set_total(rtorrent->get_key_value("total_uploaded")); if (rtorrent->has_key_value("total_downloaded")) - download->info()->mutable_dl_rate()->set_total(rtorrent->get_key_value("total_downloaded")); + download->info()->mutable_down_rate()->set_total(rtorrent->get_key_value("total_downloaded")); if (rtorrent->has_key_value("chunks_done") && rtorrent->has_key_value("chunks_wanted")) download->download()->set_chunks_done(rtorrent->get_key_value("chunks_done"), rtorrent->get_key_value("chunks_wanted")); diff --git a/src/core/download_store.cc b/src/core/download_store.cc index a85dca96..536dba10 100644 --- a/src/core/download_store.cc +++ b/src/core/download_store.cc @@ -140,7 +140,7 @@ DownloadStore::save(Download* d, int flags) { rtorrent_base->insert_key("chunks_done", d->download()->file_list()->completed_chunks()); rtorrent_base->insert_key("chunks_wanted", d->download()->data()->wanted_chunks()); rtorrent_base->insert_key("total_uploaded", d->info()->up_rate()->total()); - rtorrent_base->insert_key("total_downloaded", d->info()->dl_rate()->total()); + rtorrent_base->insert_key("total_downloaded", d->info()->down_rate()->total()); // Don't save for completed torrents when we've cleared the uncertain_pieces. torrent::resume_save_progress(*d->download(), *resume_base);