Skip to content

Commit f706db3

Browse files
rlundendaffl
authored andcommitted
fix: Compare socket event data using lodash's isEqual instead of indexOf (#1061)
Using indexOf will return false when comparing identical objects with different references. This in turn breaks feathers-sync since it creates a new object using JSON.parse, meaning that data won't properly sent out when for example patching multiple rows at once.
1 parent ef46002 commit f706db3

File tree

1 file changed

+2
-1
lines changed
  • packages/transport-commons/lib/socket

1 file changed

+2
-1
lines changed

packages/transport-commons/lib/socket/utils.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const errors = require('@feathersjs/errors');
22
const debug = require('debug')('@feathersjs/transport-commons');
3+
const { isEqual } = require('lodash');
34

45
const paramsPositions = exports.paramsPositions = {
56
find: 0,
@@ -46,7 +47,7 @@ exports.getDispatcher = function (emit, socketKey) {
4647
// If we are getting events from an array but try to dispatch individual data
4748
// try to get the individual item to dispatch from the correct index.
4849
if (!Array.isArray(data) && Array.isArray(context.result) && Array.isArray(result)) {
49-
result = result[context.result.indexOf(data)];
50+
result = context.result.find(resultData => isEqual(resultData, data));
5051
}
5152

5253
debug(`Dispatching '${eventName}' to Socket ${socket.id} with`, result);

0 commit comments

Comments
 (0)