Browse Source

Fix using startParam

master
Eduard Kuzmenko 2 years ago
parent
commit
916b77e567
  1. 4
      .env
  2. 6
      src/components/chat/input.ts

4
.env

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

6
src/components/chat/input.ts

@ -979,11 +979,11 @@ export default class ChatInput { @@ -979,11 +979,11 @@ export default class ChatInput {
this.center(true);
}
public async getNeededFakeContainer() {
public async getNeededFakeContainer(startParam = this.startParam) {
if(this.chat.selection.isSelecting) {
return this.fakeSelectionWrapper;
} else if(
this.startParam !== undefined ||
startParam !== undefined ||
!(await this.chat.canSend()) ||
this.chat.type === 'pinned' ||
await this.chat.isStartButtonNeeded()
@ -1236,7 +1236,7 @@ export default class ChatInput { @@ -1236,7 +1236,7 @@ export default class ChatInput {
this.managers.appPeersManager.canPinMessage(peerId),
this.managers.appPeersManager.isBot(peerId),
this.chat.canSend(),
this.getNeededFakeContainer(),
this.getNeededFakeContainer(startParam),
modifyAckedPromise(this.managers.acknowledged.appProfileManager.getProfileByPeerId(peerId)),
btnScheduled ? modifyAckedPromise(this.managers.acknowledged.appMessagesManager.getScheduledMessages(peerId)) : undefined,
sendAs ? (sendAs.setPeerId(this.chat.peerId), sendAs.updateManual(true)) : undefined,

Loading…
Cancel
Save