diff --git a/lib/utils/watchers.js b/lib/utils/watchers.js index 82bada34ec..63e90dc1e6 100644 --- a/lib/utils/watchers.js +++ b/lib/utils/watchers.js @@ -77,7 +77,7 @@ function registerThing(element: HTMLElement) { // Loading additional things ("load more comments", neverEndingReddit) may cause repeating posts; remove those const id = thing.getFullname(); // Some posts may not have a have an id, e.g. those that are deleted or placeholders - if (id.length === 9 || id.length === 10) { // valid ids have 9 and 10 characters + if (id.length === 9) { // valid ids have 9 characters const existing = dupeSet.get(id); if (existing === element) return; // `registerThing` is being run on an already added thing if (existing && document.contains(existing)) {