From 4f8b3efa5c76da5e9fa2bc2d8c55b42315fffb9b Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Sat, 11 Apr 2026 15:13:21 +0300 Subject: [PATCH] Fixed possible crash from url auth box. --- Telegram/SourceFiles/boxes/url_auth_box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/boxes/url_auth_box.cpp b/Telegram/SourceFiles/boxes/url_auth_box.cpp index 51735b1cdb..13649dca8c 100644 --- a/Telegram/SourceFiles/boxes/url_auth_box.cpp +++ b/Telegram/SourceFiles/boxes/url_auth_box.cpp @@ -409,7 +409,7 @@ void RequestButton( url, displayName, session->user()->name(), - bot->firstName, + bot ? bot->firstName : QString(), callback), Ui::LayerOption::KeepOther); }