Skip to content
Snippets Groups Projects
Commit 69676754 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[BUGFIX] Ensure that the users data is unique to prevent useless API calls

parent 547a9e74
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,7 @@ class GeneralUtility {
$users[] = $member['id'];
}
$users = array_unique($users);
foreach ($users as $user) {
$userData = $this->getUser($user);
$recipients[$userData['email']] = $userData['name'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment