Skip to content

Commit

Permalink
example app builds (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer authored Feb 16, 2024
1 parent 409905c commit 898fc90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/XMTPiOS/Conversations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion XMTPiOSExample/XMTPiOSExample/Persistence.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 898fc90

Please sign in to comment.