diff --git a/app/blueprints/threads/__init__.py b/app/blueprints/threads/__init__.py index 659a3778..5bdc3832 100644 --- a/app/blueprints/threads/__init__.py +++ b/app/blueprints/threads/__init__.py @@ -248,6 +248,8 @@ def view(id): addNotification(mentioned, current_user, NotificationType.THREAD_REPLY, msg, thread.getViewURL(), thread.package) + thread.watchers.append(mentioned) + msg = "New comment on '{}'".format(thread.title) addNotification(thread.watchers, current_user, NotificationType.THREAD_REPLY, msg, thread.getViewURL(), thread.package)