mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 12:36:02 +01:00
refactor: use arrow function
This commit is contained in:
@@ -53,9 +53,7 @@ module.exports = function (Messaging) {
|
||||
|
||||
async function sendNotifications(fromuid, uids, roomId, messageObj) {
|
||||
const isOnline = await user.isOnline(uids);
|
||||
uids = uids.filter(function (uid, index) {
|
||||
return !isOnline[index] && parseInt(fromuid, 10) !== parseInt(uid, 10);
|
||||
});
|
||||
uids = uids.filter((uid, index) => !isOnline[index] && parseInt(fromuid, 10) !== parseInt(uid, 10));
|
||||
if (!uids.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user