diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-06 12:02:56 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-06 12:02:56 +0900 |
commit | 4e70dd91bb70fa2b9b338686e4d5ab2560947723 (patch) | |
tree | bbee8b4f41b008e1a59212d8769663dcc813ba59 /jobs | |
parent | b1b23e3500ff80d62b54153341e66fdfef4534db (diff) | |
download | libquotient-4e70dd91bb70fa2b9b338686e4d5ab2560947723.tar.gz libquotient-4e70dd91bb70fa2b9b338686e4d5ab2560947723.zip |
Connection: homeserver(); Connection and ConnectionData: accessToken(); accessors de-virtualized
Details:
- New: Connection::homeserver(), returns the homeserver URL from inside ConnectionData
- New/Modify: Connection::accessToken() and ConnectionData::accessToken() - because we will also have refresh tokens eventually; deprecate token() for the same reason
- Modify: Connection::user(), token(), accessToken() are no more virtual (they should have never been, these are plain accessors, after all)
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/basejob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jobs/basejob.cpp b/jobs/basejob.cpp index e0dff287..20b45a15 100644 --- a/jobs/basejob.cpp +++ b/jobs/basejob.cpp @@ -92,7 +92,7 @@ void BaseJob::start() url.setPath( url.path() + "/" + apiPath() ); QUrlQuery query = this->query(); if( d->needsToken ) - query.addQueryItem("access_token", connection()->token()); + query.addQueryItem("access_token", connection()->accessToken()); url.setQuery(query); QNetworkRequest req = QNetworkRequest(url); req.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); |