1
0
Fork 0

Still need tilde

Because there can be spaces around it
This commit is contained in:
Lim Chee Aun 2023-11-24 18:49:23 +08:00
parent 7967194b89
commit b7a0d4fe28

View file

@ -73,7 +73,7 @@ window.__STATES_STATS__ = () => {
const unmountedPosts = []; const unmountedPosts = [];
for (const key in statuses) { for (const key in statuses) {
const $post = document.querySelector( const $post = document.querySelector(
`[data-state-post-id="${key}"], [data-state-post-ids~="${key}"]`, `[data-state-post-id~="${key}"], [data-state-post-ids~="${key}"]`,
); );
if (!$post) { if (!$post) {
unmountedPosts.push(key); unmountedPosts.push(key);
@ -94,7 +94,7 @@ setInterval(() => {
if (!window.__IDLE__) break; if (!window.__IDLE__) break;
try { try {
const $post = document.querySelector( const $post = document.querySelector(
`[data-state-post-id="${key}"], [data-state-post-ids~="${key}"]`, `[data-state-post-id~="${key}"], [data-state-post-ids~="${key}"]`,
); );
const postInNotifications = notifications.some( const postInNotifications = notifications.some(
(n) => key === statusKey(n.status?.id, instance), (n) => key === statusKey(n.status?.id, instance),