mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
parent
caa30e41d8
commit
0a4ee60ea0
2 changed files with 10 additions and 4 deletions
|
@ -2854,7 +2854,12 @@ void SessionImpl::saveResumeData()
|
|||
|
||||
if (isQueueingSystemEnabled())
|
||||
saveTorrentsQueue();
|
||||
generateResumeData();
|
||||
|
||||
for (const TorrentImpl *torrent : asConst(m_torrents))
|
||||
{
|
||||
torrent->nativeHandle().save_resume_data(lt::torrent_handle::only_if_modified);
|
||||
++m_numResumeData;
|
||||
}
|
||||
|
||||
while (m_numResumeData > 0)
|
||||
{
|
||||
|
@ -2871,6 +2876,8 @@ void SessionImpl::saveResumeData()
|
|||
switch (a->type())
|
||||
{
|
||||
case lt::save_resume_data_failed_alert::alert_type:
|
||||
--m_numResumeData;
|
||||
break;
|
||||
case lt::save_resume_data_alert::alert_type:
|
||||
dispatchTorrentAlert(static_cast<const lt::torrent_alert *>(a));
|
||||
break;
|
||||
|
|
|
@ -682,7 +682,7 @@ bool TorrentImpl::connectPeer(const PeerAddress &peerAddress)
|
|||
|
||||
bool TorrentImpl::needSaveResumeData() const
|
||||
{
|
||||
return m_nativeHandle.need_save_resume_data();
|
||||
return m_nativeStatus.need_save_resume;
|
||||
}
|
||||
|
||||
void TorrentImpl::saveResumeData()
|
||||
|
@ -2006,7 +2006,6 @@ void TorrentImpl::handleFileErrorAlert(const lt::file_error_alert *p)
|
|||
#ifdef QBT_USES_LIBTORRENT2
|
||||
void TorrentImpl::handleFilePrioAlert(const lt::file_prio_alert *)
|
||||
{
|
||||
if (m_nativeHandle.need_save_resume_data())
|
||||
m_session->handleTorrentNeedSaveResumeData(this);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue