Skip to content

Commit

Permalink
Fix searching channel messages (#6566)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles authored Oct 11, 2024
1 parent f0dbd42 commit 0544d91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ export class CommunityClient extends CandidService {
{
channel_id: BigInt(chatId.channelId),
max_results: maxResults,
users: users.length > 0 ? users.map(principalStringToBytes) : undefined,
users: users.map(principalStringToBytes),
search_term: searchTerm,
},
(resp) => searchGroupChatResponse(resp, chatId),
Expand Down

0 comments on commit 0544d91

Please sign in to comment.