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

Merge pull request #4230

Yuri (1):
      fix(db): Made RawDatabase::execLater executes statements asynchronously.
This commit is contained in:
sudden6 2017-03-04 00:01:30 +01:00
commit 683fd3998f
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -294,7 +294,7 @@ void RawDatabase::execLater(const QVector<RawDatabase::Query>& statements)
pendingTransactions.enqueue(trans);
}
QMetaObject::invokeMethod(this, "process");
QMetaObject::invokeMethod(this, "process", Qt::QueuedConnection);
}
/**