feathers icon indicating copy to clipboard operation
feathers copied to clipboard

Events with arrays not working properly

Open daffl opened this issue 1 year ago • 0 comments

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?

daffl avatar Sep 19 '24 20:09 daffl