Fix using startParam
This commit is contained in:
parent
a05e708a24
commit
916b77e567
4
.env
4
.env
@ -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
|
||||
|
@ -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 {
|
||||
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…
Reference in New Issue
Block a user