FIX: Message bus callback was pointed at the wrong object.

This commit is contained in:
Robin Ward 2015-05-07 11:26:05 -04:00
parent fd58bd570e
commit 0a189a4e52
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}