mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
FIX: Remove seen flag status from viewed topics
This commit is contained in:
parent
c04b7cfe8a
commit
8f51878d73
1 changed files with 2 additions and 1 deletions
|
@ -126,7 +126,8 @@ Discourse.TopicTrackingState = Discourse.Model.extend({
|
||||||
highest_post_number: state.highest_post_number,
|
highest_post_number: state.highest_post_number,
|
||||||
last_read_post_number: state.last_read_post_number,
|
last_read_post_number: state.last_read_post_number,
|
||||||
new_posts: newPosts,
|
new_posts: newPosts,
|
||||||
unread: unread
|
unread: unread,
|
||||||
|
unseen: false
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue