From 4b0d956b3d5aafd1c6b4c1ef1942e19434ef7518 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Mon, 12 Jun 2017 11:50:36 +0200 Subject: [PATCH] OAuth: Fix a typo in the success message --- src/gui/creds/oauth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/creds/oauth.cpp b/src/gui/creds/oauth.cpp index 86b261bb3..2022995c2 100644 --- a/src/gui/creds/oauth.cpp +++ b/src/gui/creds/oauth.cpp @@ -64,7 +64,7 @@ void OAuth::start() } // TODO: add redirect to the page on the server - httpReplyAndClose(socket, "200 OK", "

Login Successfull

You can close this window.

"); + httpReplyAndClose(socket, "200 OK", "

Login Successful

You can close this window.

"); QString code = rx.cap(1); // The 'code' is the first capture of the regexp -- 2.30.2