diff options
| author | Aaron Sonin <10217842+byteduck@users.noreply.github.com> | 2023-01-02 11:59:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-02 11:59:29 -0700 |
| commit | e0e3d4d8feec359dbd1df7ccff2573af49d14d91 (patch) | |
| tree | be85bccd5764d178fd62f3a5ddf2cac7fbb57239 /libraries/katabasis/src | |
| parent | ba81ad1ac3cff48b973ee167802a5d6398eac990 (diff) | |
| parent | 4b12c85d91be34504384117584fb4f25a754481e (diff) | |
| download | PrismLauncher-e0e3d4d8feec359dbd1df7ccff2573af49d14d91.tar.gz PrismLauncher-e0e3d4d8feec359dbd1df7ccff2573af49d14d91.tar.bz2 PrismLauncher-e0e3d4d8feec359dbd1df7ccff2573af49d14d91.zip | |
Merge branch 'PrismLauncher:develop' into instance-accounts
Diffstat (limited to 'libraries/katabasis/src')
| -rw-r--r-- | libraries/katabasis/src/DeviceFlow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/katabasis/src/DeviceFlow.cpp b/libraries/katabasis/src/DeviceFlow.cpp index f78fd620..f49fcb7d 100644 --- a/libraries/katabasis/src/DeviceFlow.cpp +++ b/libraries/katabasis/src/DeviceFlow.cpp @@ -19,9 +19,11 @@ #include "katabasis/PollServer.h" #include "katabasis/Globals.h" +#include "KatabasisLogging.h" #include "JsonResponse.h" namespace { + // ref: https://tools.ietf.org/html/rfc8628#section-3.2 // Exception: Google sign-in uses "verification_url" instead of "*_uri" - we'll accept both. bool hasMandatoryDeviceAuthParams(const QVariantMap& params) @@ -333,9 +335,7 @@ QString DeviceFlow::refreshToken() { } void DeviceFlow::setRefreshToken(const QString &v) { -#ifndef NDEBUG - qDebug() << "DeviceFlow::setRefreshToken" << v << "..."; -#endif + qCDebug(katabasisCredentials) << "new refresh token:" << v; token_.refresh_token = v; } |
