Skip to content

Commit

Permalink
fix the conflict stream
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Sep 20, 2024
1 parent b4e964b commit 9acfb24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Conversations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default class Conversations<
const groupsSubscription = XMTPModule.emitter.addListener(
EventTypes.Group,
async ({ inboxId, group }: { inboxId: string; group: GroupParams }) => {
if (this.known[group.id]) {
if (this.known[group.id] || this.client.inboxId !== inboxId) {
return
}
this.known[group.id] = true
Expand Down

0 comments on commit 9acfb24

Please sign in to comment.