From 0bd48ef023b1f06517fbafdf1bf0fe1f229911ed Mon Sep 17 00:00:00 2001 From: TheBronx Date: Sun, 18 Jan 2015 19:15:59 +0100 Subject: [PATCH] fix error in previous commit fix error in previous commit --- src/socket.io/posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socket.io/posts.js b/src/socket.io/posts.js index a040493942..fb67639c94 100644 --- a/src/socket.io/posts.js +++ b/src/socket.io/posts.js @@ -181,7 +181,7 @@ function favouriteCommand(socket, command, eventName, notification, data, callba return callback(err); } - executeFavouriteCommand(socket, command, eventName, notification, filteredData, callback); + executeFavouriteCommand(socket, command, eventName, notification, filteredData.data, callback); }); }); }