Various improvements

This commit is contained in:
Ilya Laktyushin 2025-11-13 22:06:24 +04:00
parent 74e1d22de4
commit 5e17b321f8
19 changed files with 743 additions and 343 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, 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)
self.push(controller)
})
}