diff --git a/core/mail/notifications.py b/core/mail/notifications.py index 86dd5fe..72b16d0 100644 --- a/core/mail/notifications.py +++ b/core/mail/notifications.py @@ -15,7 +15,7 @@ class NotificationDispatcher: # Infinite loop to continuously listen for messages while True: # Blocking receive to get the message from the channel layer - message = await self.channel_layer.receive('user_notification') + message = await self.channel_layer.receive('general') if message: # Process the received message