From 0a189a4e5248713271c82ee9338433380d15a78e Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Thu, 7 May 2015 11:26:05 -0400 Subject: [PATCH] FIX: Message bus callback was pointed at the wrong object. --- app/assets/javascripts/discourse/controllers/topic.js.es6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/discourse/controllers/topic.js.es6 b/app/assets/javascripts/discourse/controllers/topic.js.es6 index 321d2740ad0..394c851d70d 100644 --- a/app/assets/javascripts/discourse/controllers/topic.js.es6 +++ b/app/assets/javascripts/discourse/controllers/topic.js.es6 @@ -593,8 +593,8 @@ export default ObjectController.extend(Discourse.SelectedPostsCount, BufferedCon const topic = self.get('model'); if (data.notification_level_change) { - topic.set('model.details.notification_level', data.notification_level_change); - topic.set('model.details.notifications_reason_id', data.notifications_reason_id); + topic.set('details.notification_level', data.notification_level_change); + topic.set('details.notifications_reason_id', data.notifications_reason_id); return; }