From 37cdf9ce2559ed2a90697efd1b10570e248b8000 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 453ffed7d2..ef01d9a04c 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); },