mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 12:05:57 +01:00
removed find
This commit is contained in:
@@ -119,8 +119,10 @@ profileController.get = function(req, res, callback) {
|
||||
);
|
||||
}
|
||||
|
||||
userData.selectedGroup = userData.groups.find(function(group) {
|
||||
return group && group.name === userData.groupTitle;
|
||||
userData.groups.forEach(function(group) {
|
||||
if (group && group.name === userData.groupTitle) {
|
||||
userData.selectedGroup = group;
|
||||
}
|
||||
});
|
||||
|
||||
plugins.fireHook('filter:user.account', {userData: userData, uid: req.uid}, next);
|
||||
|
||||
Reference in New Issue
Block a user