Version 0.10.20: don't allow the share url start with an inline bot.

This commit is contained in:
John Preston 2016-12-18 19:12:49 +03:00
parent 09b429592f
commit 19b77ee4ac
2 changed files with 5 additions and 1 deletions

View File

@ -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));
}

View File

@ -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