Various improvements

This commit is contained in:
Ilya Laktyushin 2025-11-15 02:12:21 +04:00
parent 82addaa434
commit a443df81dd
9 changed files with 52 additions and 24 deletions

View file

@ -565,7 +565,7 @@ open class TelegramBaseController: ViewController, KeyShortcutResponder {
guard let self, let auction else {
return
}
let controller = self.context.sharedContext.makeGiftAuctionBidScreen(context: self.context, toPeerId: auction.currentBidPeerId ?? self.context.account.peerId, text: nil, entities: nil, hideName: false, auctionContext: auction)
let controller = self.context.sharedContext.makeGiftAuctionBidScreen(context: self.context, toPeerId: auction.currentBidPeerId ?? self.context.account.peerId, text: nil, entities: nil, hideName: false, auctionContext: auction, acquiredGifts: nil)
self.push(controller)
})
}