feathers
feathers copied to clipboard
Events with arrays not working properly
Discussed in https://github.com/feathersjs/feathers/discussions/3536
Originally posted by suprsidr September 16, 2024 In 4.x when I sent a patch from the client I would get 2 responses:
[
null,
{
...userData
}
],
[
"users patched",
{
...userData
}
]
My client side event listeners fired as expected. But now in 5.x I only get the first.
[
null,
{
...userData
}
],
And my client side event listeners are not firing.
Anyone have any clue what I missed on the update?