diff --git a/Sources/XMTPiOS/Conversations.swift b/Sources/XMTPiOS/Conversations.swift index 9dd113bc..e474d2b3 100644 --- a/Sources/XMTPiOS/Conversations.swift +++ b/Sources/XMTPiOS/Conversations.swift @@ -153,7 +153,7 @@ public actor Conversations { throw GroupError.memberNotRegistered(erroredAddresses) } - return try await v3Client.conversations().createGroup(accountAddresses: addresses).fromFFI(client: client) + return try await v3Client.conversations().createGroup(accountAddresses: addresses, permissions: nil).fromFFI(client: client) } /// Import a previously seen conversation. diff --git a/XMTPiOSExample/XMTPiOSExample/Persistence.swift b/XMTPiOSExample/XMTPiOSExample/Persistence.swift index ec5cea5d..bc46fbec 100644 --- a/XMTPiOSExample/XMTPiOSExample/Persistence.swift +++ b/XMTPiOSExample/XMTPiOSExample/Persistence.swift @@ -41,7 +41,7 @@ struct Persistence { } func save(conversation: Conversation) throws { - keychain[data: key(topic: conversation.topic)] = try JSONEncoder().encode(conversation.encodedContainer) +// keychain[data: key(topic: conversation.topic)] = try JSONEncoder().encode(conversation.encodedContainer) } func key(topic: String) -> String {