From 240117b77e30917aebd064d869cd1e78d06b5cff Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 6 Dec 2019 13:27:10 +0300 Subject: [PATCH] Use URL instead of string for QR login. --- Telegram/SourceFiles/intro/intro_qr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/intro/intro_qr.cpp b/Telegram/SourceFiles/intro/intro_qr.cpp index 079297c15..9ce516ab1 100644 --- a/Telegram/SourceFiles/intro/intro_qr.cpp +++ b/Telegram/SourceFiles/intro/intro_qr.cpp @@ -329,7 +329,7 @@ void QrWidget::showTokenError(const RPCError &error) { void QrWidget::showToken(const QByteArray &token) { const auto encoded = token.toBase64(QByteArray::Base64UrlEncoding); - _qrCodes.fire_copy("tg_login/" + encoded); + _qrCodes.fire_copy("tg://login?token=" + encoded); } void QrWidget::importTo(MTP::DcId dcId, const QByteArray &token) {