diff --git a/notifications/models.py b/notifications/models.py index 40f7f10..625726e 100644 --- a/notifications/models.py +++ b/notifications/models.py @@ -265,7 +265,7 @@ def notify_handler(verb, **kwargs): if isinstance(recipient, Group): recipients = recipient.user_set.all() elif isinstance(recipient, QuerySet) or isinstance(recipient, list): - pass + recipients = recipient else: recipients = [recipient]