Always save info dict when saving fastresume

Otherwise torrents loaded from fastresume won't have it and needs
to redownload it from elsewhere and slowing down the startup process.
This is also required for the future where we will drop loading the
`info` dict from .torrent files.
This commit is contained in:
Chocobo1
2019-08-21 15:37:39 +08:00
parent d657c87243
commit 4aab44e779
2 changed files with 6 additions and 1 deletions

View File

@@ -552,7 +552,7 @@ bool TorrentHandle::needSaveResumeData() const
void TorrentHandle::saveResumeData()
{
m_nativeHandle.save_resume_data();
m_nativeHandle.save_resume_data(lt::torrent_handle::save_info_dict);
m_session->handleTorrentSaveResumeDataRequested(this);
}