Browse Source

Fix opening pinned messages list

master
Eduard Kuzmenko 2 years ago
parent
commit
177df2b5ef
  1. 4
      .env
  2. 4
      src/components/chat/input.ts

4
.env

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
API_ID=1025907
API_HASH=452b0359b988148995f22ff0f4229750
VERSION=1.2.0
VERSION_FULL=1.2.0 (123)
BUILD=123
VERSION_FULL=1.2.0 (124)
BUILD=124

4
src/components/chat/input.ts

@ -1263,7 +1263,9 @@ export default class ChatInput { @@ -1263,7 +1263,9 @@ export default class ChatInput {
});
}
this.updateOffset(null, false, true);
if(this.newMessageWrapper) {
this.updateOffset(null, false, true);
}
if(botCommandsToggle) {
this.hasBotCommands = undefined;

Loading…
Cancel
Save