diff --git a/taiga/projects/notifications/services.py b/taiga/projects/notifications/services.py index ecd3a2e8..a278cee2 100644 --- a/taiga/projects/notifications/services.py +++ b/taiga/projects/notifications/services.py @@ -207,6 +207,9 @@ def _make_template_mail(name:str): @transaction.atomic def send_notifications(obj, *, history): + if history.is_hidden: + return None + key = make_key_from_model_object(obj) owner = User.objects.get(pk=history.user["pk"]) notification, created = (HistoryChangeNotification.objects.select_for_update()