From 19b77ee4ac37a211d48b16087edd92e70e1019dc Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 18 Dec 2016 19:12:49 +0300 Subject: [PATCH] Version 0.10.20: don't allow the share url start with an inline bot. --- Telegram/SourceFiles/mainwidget.cpp | 4 ++++ Telegram/build/build.bat | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index 550216a01..587bc7f29 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -722,6 +722,10 @@ void MainWidget::shareContactLayer(UserData *contact) { } void MainWidget::shareUrlLayer(const QString &url, const QString &text) { + // Don't allow to insert an inline bot query by share url link. + if (url.trimmed().startsWith('@')) { + return; + } hiderLayer(new HistoryHider(this, url, text)); } diff --git a/Telegram/build/build.bat b/Telegram/build/build.bat index c9e3ef237..281781a7c 100644 --- a/Telegram/build/build.bat +++ b/Telegram/build/build.bat @@ -176,7 +176,7 @@ echo . echo Version %AppVersionStrFull% is ready for deploy! echo . -set "FinalReleasePath=Z:\TBuild\tother\tsetup" +set "FinalReleasePath=Y:\TBuild\tother\tsetup" set "FinalDeployPath=%FinalReleasePath%\%AppVersionStrMajor%\%AppVersionStrFull%" if not exist "%DeployPath%\%UpdateFile%" goto error