Skip to content

v0.3.3

Choose a tag to compare

@vincentmathis vincentmathis released this 17 Jun 08:57

What's fixed

Replies loop could delete the same item repeatedly. After deleting a reply on the replies tab, Threads keeps the DOM element in place. Without tracking, the next iteration finds the same More button and tries to delete an already-deleted item — which wastes time or loops forever.

Fix: each More SVG gets \data-oc-processed\ before the delete attempt. The JS selector skips SVGs with that attribute, so already-processed items are never candidate for deletion again.

Also simplifies \delete_replies: deletes directly on the replies tab page — no navigating into individual threads.