Switch to side-by-side view
--- a/Allura/allura/model/discuss.py +++ b/Allura/allura/model/discuss.py @@ -444,6 +444,9 @@ artifact = self.thread.artifact or self.thread Notification.post(artifact, 'message', post=self) session(self).flush() + if artifact != self.discussion: + Notification.post(self.discussion, 'message', post=self) + session(self).flush() self.thread.last_post_date = max( self.thread.last_post_date, self.mod_date)