diff --git a/app/Traits/HasNotificationSettings.php b/app/Traits/HasNotificationSettings.php index 5a5ae1929..82cbda6ad 100644 --- a/app/Traits/HasNotificationSettings.php +++ b/app/Traits/HasNotificationSettings.php @@ -75,6 +75,10 @@ trait HasNotificationSettings 'slack' => SlackChannel::class, ]; + if ($event === 'general') { + unset($channelMap['email']); + } + foreach ($channelMap as $channel => $channelClass) { if ($this->isNotificationEnabled($channel) && $this->isNotificationTypeEnabled($channel, $event)) { $channels[] = $channelClass;