1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-12 07:48:04 +00:00

Delay saving session statistics

Pausing the libtorrent session should be scheduled before this.
This commit is contained in:
Chocobo1 2022-10-17 03:17:32 +08:00
parent c94152c47c
commit a325ab8d6e
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -1030,11 +1030,12 @@ void SessionImpl::setGlobalMaxSeedingMinutes(int minutes)
// Main destructor
SessionImpl::~SessionImpl()
{
saveStatistics();
// Do some BT related saving
// Do some bittorrent related saving
// After this, (ideally) no more important alerts will be generated/handled
saveResumeData();
saveStatistics();
// We must delete FilterParserThread
// before we delete lt::session
delete m_filterParser;