From bf276d514760496eb28a55dfbdd98aca9c78ff37 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 21 Oct 2016 14:44:22 -0400 Subject: [PATCH] fixes #5144 --- src/socket.io/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socket.io/user.js b/src/socket.io/user.js index 47d3f6f762..166db2dffd 100644 --- a/src/socket.io/user.js +++ b/src/socket.io/user.js @@ -169,7 +169,7 @@ SocketUser.follow = function (socket, data, callback) { bodyShort: '[[notifications:user_started_following_you, ' + userData.username + ']]', nid: 'follow:' + data.uid + ':uid:' + socket.uid, from: socket.uid, - path: '/uid/' + socket.uid, + path: '/uid/' + data.uid + '/followers', mergeId: 'notifications:user_started_following_you' }, next); },