We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Streaming all group messages causes no streamGroup callbacks
const [alix, bo] = await createClients(2) console.log('created clients') let groupCallbacks = 0 let messageCallbacks = 0 await bo.conversations.streamGroups(async () => { console.log('message received') groupCallbacks++ }) await bo.conversations.streamAllMessages(async () => { console.log('message received') messageCallbacks++ }, true) const group = await alix.conversations.newGroup([bo.address]) await group.send('hello') await delayToPropogate() await new Promise((resolve) => setTimeout(resolve, 10000)) assert(groupCallbacks === 1, 'group stream should have received 1 group') // <--- Fails here assert( messageCallbacks === 1, 'message stream should have received 1 message' ) return true
No response
The text was updated successfully, but these errors were encountered:
nplasterer
Successfully merging a pull request may close this issue.
Describe the bug
Streaming all group messages causes no streamGroup callbacks
Expected behavior
No response
Steps to reproduce the bug
No response
The text was updated successfully, but these errors were encountered: