Skip to content
Snippets Groups Projects
Commit 428a7d66 authored by Quentin Ribac's avatar Quentin Ribac
Browse files

FIX #21384 TIME 1:00 rm double function call

parent c958cb98
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ foreach ($baskets as $basket) {
foreach ($groups as $group) {
$diffusionParams = explode(",", $notification['diffusion_properties']);
if ($notification['diffusion_type'] == 'group' && !in_array($group['group_id'], explode(",", $diffusionParams))) {
if ($notification['diffusion_type'] == 'group' && !in_array($group['group_id'], $diffusionParams)) {
continue;
}
$groupInfo = \Group\models\GroupModel::getByGroupId(['groupId' => $group['group_id'], 'select' => ['id']]);
......
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