1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 04:54:18 +00:00

Remove lockfile only when last app instance is destroyed

This commit is contained in:
Vladimir Golovnev (Glassez) 2021-06-16 18:14:57 +03:00 committed by Vladimir Golovnev
parent e74ad86f14
commit 50ddfea617

View File

@ -135,10 +135,13 @@ QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId)
} }
QtLocalPeer::~QtLocalPeer() QtLocalPeer::~QtLocalPeer()
{
if (!isClient())
{ {
lockFile.unlock(); lockFile.unlock();
lockFile.remove(); lockFile.remove();
} }
}
bool QtLocalPeer::isClient() bool QtLocalPeer::isClient()
{ {