This commit is contained in:
Eduard Kuzmenko 2022-07-26 08:10:48 +02:00
parent 1d99336211
commit bb1202a38d
2 changed files with 4 additions and 3 deletions

4
.env
View File

@ -1,5 +1,5 @@
API_ID=1025907
API_HASH=452b0359b988148995f22ff0f4229750
VERSION=1.5.0
VERSION_FULL=1.5.0 (212)
BUILD=212
VERSION_FULL=1.5.0 (213)
BUILD=213

View File

@ -1516,7 +1516,8 @@ export class AppDialogsManager {
}, {capture: true});
// cancel link click
attachClickEvent(list, (e) => {
// ! do not change it to attachClickEvent
list.addEventListener('click', (e) => {
if(e.button === 0) {
cancelEvent(e);
}