Fix poll bubble solution display

This commit is contained in:
Ali
2020-04-10 15:39:56 +04:00
parent 32f4540fca
commit d78f5dc991
2 changed files with 31 additions and 30 deletions

View File

@@ -1696,7 +1696,8 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
if let solution = resultPoll.results.solution {
for contentNode in itemNode.contentNodes {
if let contentNode = contentNode as? ChatMessagePollBubbleContentNode, let sourceNode = contentNode.solutionTipSourceNode {
if let contentNode = contentNode as? ChatMessagePollBubbleContentNode {
let sourceNode = contentNode.solutionTipSourceNode
strongSelf.controllerInteraction?.displayPollSolution(solution, sourceNode)
}
}