Skip to content
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

Libxmtp fork fix dont overwrite intent state #352

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions library/src/main/java/libxmtp-version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 3103e7b9
Version: 339483f3
Branch: main
Date: 2024-12-05 00:24:03 +0000
Date: 2024-12-16 21:37:35 +0000
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ data class Conversations(

// Sync all new and existing conversations data from the network
suspend fun syncAllConversations(): UInt {
return ffiConversations.syncAllConversations()
// TODO: add consentState here
return ffiConversations.syncAllConversations(null)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nplasterer per conversation we'll add this in a follow up. or let me know if I misunderstood

}

suspend fun newConversation(peerAddress: String): Conversation {
Expand Down
Loading
Loading