aboutsummaryrefslogtreecommitdiff
path: root/jobs/basejob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'jobs/basejob.cpp')
-rw-r--r--jobs/basejob.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/jobs/basejob.cpp b/jobs/basejob.cpp
index 519e1517..e24db012 100644
--- a/jobs/basejob.cpp
+++ b/jobs/basejob.cpp
@@ -42,6 +42,13 @@ class BaseJob::Private
BaseJob::BaseJob(ConnectionData* connection, JobHttpType type, bool needsToken)
: d(new Private(connection, type, needsToken))
{
+ // Work around KJob inability to separate success and failure signals
+ connect(this, &BaseJob::result, [this]() {
+ if (error() == NoError)
+ emit success(this);
+ else
+ emit failure(this);
+ });
}
BaseJob::~BaseJob()