Skip to content

Commit 96e7788

Browse files
Prevent errors in console during queue rearranging (#1617)
Co-authored-by: April Sylph <[email protected]>
1 parent 7a281c5 commit 96e7788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/mutations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const pageModifications = Object.freeze({
6464
});
6565

6666
export const onNewPosts = Object.freeze({
67-
addListener: callback => pageModifications.register(`${postSelector} article`, callback),
67+
addListener: callback => pageModifications.register(`${postSelector}:not(.sortable-fallback) article`, callback),
6868
removeListener: callback => pageModifications.unregister(callback)
6969
});
7070

0 commit comments

Comments
 (0)