From 79b9f6d928cbd516a610d845891f4054df05e0c4 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 23 Dec 2019 21:49:48 +0300 Subject: ConnectionData::submit: when not queuing, still submit asynchronously Otherwise BaseJob::messageSent has every chance to be overlooked by clients who subscribe to it after calling callApi(). --- lib/connectiondata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/connectiondata.cpp b/lib/connectiondata.cpp index 753fa3ad..e806f952 100644 --- a/lib/connectiondata.cpp +++ b/lib/connectiondata.cpp @@ -96,7 +96,7 @@ void ConnectionData::submit(BaseJob* job) { job->setStatus(BaseJob::Pending); if (!d->rateLimiter.isActive()) { - job->sendRequest(); + QTimer::singleShot(0, job, &BaseJob::sendRequest); return; } d->jobs[size_t(job->isBackground())].emplace(job); -- cgit v1.2.3