Still need tilde

Because there can be spaces around it
pull/334/head 2023.11.25.1d9d22a
Lim Chee Aun 2023-11-24 18:49:23 +08:00
rodzic 7967194b89
commit b7a0d4fe28
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -73,7 +73,7 @@ window.__STATES_STATS__ = () => {
const unmountedPosts = [];
for (const key in statuses) {
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) {
unmountedPosts.push(key);
@ -94,7 +94,7 @@ setInterval(() => {
if (!window.__IDLE__) break;
try {
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(
(n) => key === statusKey(n.status?.id, instance),