diff options
Diffstat (limited to 'src/ReCaptcha.cpp')
-rw-r--r-- | src/ReCaptcha.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ReCaptcha.cpp b/src/ReCaptcha.cpp index ffd202f5..ab9db8cc 100644 --- a/src/ReCaptcha.cpp +++ b/src/ReCaptcha.cpp @@ -10,13 +10,14 @@ #include "MatrixClient.h" ReCaptcha::ReCaptcha(const QString &session, const QString &context, QObject *parent) - : QObject{parent}, - m_session{session}, - m_context{context} + : QObject{parent} + , m_session{session} + , m_context{context} { } -void ReCaptcha::openReCaptcha() +void +ReCaptcha::openReCaptcha() { const auto url = QString("https://%1:%2/_matrix/client/r0/auth/m.login.recaptcha/" "fallback/web?session=%3") |