-
Notifications
You must be signed in to change notification settings - Fork 40
Input vs output formats for groups #51
Copy link
Copy link
Open
Description
The object representation of groups appear to be different between the format requires for sending messages, and the format received on the other end. For example, a sent group will be
groups: [
{
index: 453,
delim: 447,
entries: [
{
447: 'D',
448: 'demo-9',
452: '3'
},
{
447: 'D',
448: 'demo-8',
452: '1'
}
]
},
...
]
But on the received side, it will be
groups: {
'453':
[ { tags: { '447': 'D', '448': 'demo-9', '452': '3' } },
{ tags: { '447': 'D', '448': 'demo-8', '452': '1' } }
]
}
Are these formats documented somewhere? Is there a library to convert one to the other if I want to compare a sent message to the corresponding received message on the other side?
Thanks!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels