Fix open story from sticker reply

This commit is contained in:
Ali 2023-07-04 18:37:36 +02:00
parent c26afb2ce0
commit 96ae93576d

View File

@ -1305,6 +1305,10 @@ class ChatMessageStickerItemNode: ChatMessageItemView {
return .optionalAction({
item.controllerInteraction.navigateToMessage(item.message.id, attribute.messageId)
})
} else if let attribute = attribute as? ReplyStoryAttribute {
return .optionalAction({
item.controllerInteraction.navigateToStory(item.message, attribute.storyId)
})
}
}
}