Hello!
We’re adding a chat search feature. Our problem is that this search funcionality is case sensitive, but we want case insensitive results.
For example, the keywords “Happy” and “happy” should return the same results.
Do you know how can we achieve this?
This is our implementation:
query = SBDMessageSearchQuery.create { builder in
builder.keyword = text
builder.channelUrl = self.channel.channelUrl
builder.order = .timeStamp
}
query?.loadNextPage { (messages, error) in
guard error == nil else {
return
}
// ...
}
Thank you!