|
|
@ -99,6 +99,9 @@ module.exports = function (SocketUser) {
|
|
|
|
uploadedpicture: '',
|
|
|
|
uploadedpicture: '',
|
|
|
|
picture: userData.uploadedpicture === userData.picture ? '' : userData.picture // if current picture is uploaded picture, reset to user icon
|
|
|
|
picture: userData.uploadedpicture === userData.picture ? '' : userData.picture // if current picture is uploaded picture, reset to user icon
|
|
|
|
}, next);
|
|
|
|
}, next);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
function (next) {
|
|
|
|
|
|
|
|
plugins.fireHook('action:user.removeUploadedPicture', {callerUid: socket.uid, uid: data.uid});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
], callback);
|
|
|
|
], callback);
|
|
|
|
};
|
|
|
|
};
|
|
|
|