mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 03:55:55 +01:00
fix(topic-events): repeated invocations of Posts.addTopicEvents caused dupes to be added to DOM
This commit is contained in:
@@ -285,6 +285,10 @@ define('forum/topic/posts', [
|
||||
return;
|
||||
}
|
||||
|
||||
// Filter out events already in DOM
|
||||
const eventIdsInDOM = Array.from(document.querySelectorAll('[component="topic/event"]')).map(el => parseInt(el.getAttribute('data-topic-event-id'), 10));
|
||||
events = events.filter(event => !eventIdsInDOM.includes(event.id));
|
||||
|
||||
let postTimestamps = ajaxify.data.posts.map(post => post.timestamp);
|
||||
|
||||
const reverse = config.topicPostSort === 'newest_to_oldest';
|
||||
|
||||
Reference in New Issue
Block a user