1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Fix IPC not taking ownership after crash

In case a previous instance crashed, we were trying to activate the current owner before even checking if it was still alive, this resulted in qTox needing to be restarted twice after a crash.
This commit is contained in:
tux3 2015-12-15 21:06:55 +01:00
parent 9cf0cbde6b
commit af59b5b45a
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -69,7 +69,7 @@ IPC::IPC()
return; // We won't be able to do any IPC without being attached, let's get outta here
}
timer.start();
processEvents();
}
IPC::~IPC()