this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Still need tilde

Because there can be spaces around it

+2 -2
+2 -2
src/app.jsx
··· 73 73 const unmountedPosts = []; 74 74 for (const key in statuses) { 75 75 const $post = document.querySelector( 76 - `[data-state-post-id="${key}"], [data-state-post-ids~="${key}"]`, 76 + `[data-state-post-id~="${key}"], [data-state-post-ids~="${key}"]`, 77 77 ); 78 78 if (!$post) { 79 79 unmountedPosts.push(key); ··· 94 94 if (!window.__IDLE__) break; 95 95 try { 96 96 const $post = document.querySelector( 97 - `[data-state-post-id="${key}"], [data-state-post-ids~="${key}"]`, 97 + `[data-state-post-id~="${key}"], [data-state-post-ids~="${key}"]`, 98 98 ); 99 99 const postInNotifications = notifications.some( 100 100 (n) => key === statusKey(n.status?.id, instance),