diff options
Diffstat (limited to 'lib/jobs')
-rw-r--r-- | lib/jobs/basejob.cpp | 2 | ||||
-rw-r--r-- | lib/jobs/basejob.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/jobs/basejob.cpp b/lib/jobs/basejob.cpp index f46d2d61..e4a74954 100644 --- a/lib/jobs/basejob.cpp +++ b/lib/jobs/basejob.cpp @@ -286,7 +286,7 @@ void BaseJob::gotReply() QJsonDocument::fromJson(d->rawResponse).object())); } - if (error() != TooManyRequestsError) + if (status().code != TooManyRequestsError) finishJob(); else { stop(); diff --git a/lib/jobs/basejob.h b/lib/jobs/basejob.h index d94ab31d..f445d087 100644 --- a/lib/jobs/basejob.h +++ b/lib/jobs/basejob.h @@ -61,8 +61,7 @@ public: WarningLevel = 20, UnexpectedResponseType = 21, UnexpectedResponseTypeWarning = UnexpectedResponseType, - Abandoned = 50 //< A very brief period between abandoning and object - //deletion + Abandoned = 50 //< A tiny period between abandoning and object deletion , ErrorLevel = 100 //< Errors have codes starting from this , |