FIX: Remove seen flag status from viewed topics

This commit is contained in:
Robin Ward 2014-08-15 10:46:23 -04:00
parent c04b7cfe8a
commit 8f51878d73
1 changed files with 2 additions and 1 deletions

View File

@ -126,7 +126,8 @@ Discourse.TopicTrackingState = Discourse.Model.extend({
highest_post_number: state.highest_post_number,
last_read_post_number: state.last_read_post_number,
new_posts: newPosts,
unread: unread
unread: unread,
unseen: false
});
}
}