mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
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:
parent
21aebaf16f
commit
b37e7b0340
1 changed files with 1 additions and 1 deletions
|
@ -508,7 +508,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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue