-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing conversations that contain a no valid topic #194
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mind bumping the podfile like what I did here: #193 so we can get these changes into react native as well.
Also looks like a legit lint error.
Co-authored-by: Naomi Plasterer <[email protected]>
Update pod version to trigger the build
@@ -39,4 +39,8 @@ public enum Topic { | |||
private func wrap(_ value: String) -> String { | |||
"/xmtp/0/\(value)/proto" | |||
} | |||
|
|||
static func isValidTopic(topic: String) -> Bool { | |||
return topic.allSatisfy(\.isASCII) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also commented on the Android PR on this. do we want to allow characters 0-32 in topics?
…x/conversations_with_invalid_topics
Expectations