From e54230f42c7ca40288190f09ffc6617b794c7ede Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Thu, 6 Jun 2024 13:25:30 +0400 Subject: [PATCH] Fix build --- .../Sources/PeerInfoStoryPaneNode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/TelegramUI/Components/PeerInfo/PeerInfoVisualMediaPaneNode/Sources/PeerInfoStoryPaneNode.swift b/submodules/TelegramUI/Components/PeerInfo/PeerInfoVisualMediaPaneNode/Sources/PeerInfoStoryPaneNode.swift index ecd262ff0a..63390d65a7 100644 --- a/submodules/TelegramUI/Components/PeerInfo/PeerInfoVisualMediaPaneNode/Sources/PeerInfoStoryPaneNode.swift +++ b/submodules/TelegramUI/Components/PeerInfo/PeerInfoVisualMediaPaneNode/Sources/PeerInfoStoryPaneNode.swift @@ -1521,7 +1521,7 @@ public final class PeerInfoStoryPaneNode: ASDisplayNode, PeerInfoPaneNode, ASScr if let listContext { self.listSource = listContext } else if let searchQuery { - self.listSource = SearchStoryListContext(account: context.account, query: searchQuery) + self.listSource = SearchStoryListContext(account: context.account, source: .hashtag(searchQuery)) } else { self.listSource = PeerStoryListContext(account: context.account, peerId: peerId ?? context.account.peerId, isArchived: self.isArchive) }