static site frontend for mapped.at mapped.at
3
fork

Configure Feed

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

Fix double callback bug causing locations filter to show each entry twice

+1 -1
+1 -1
router.js
··· 31 31 32 32 function _notify() { 33 33 const route = getRoute(); 34 - for (const fn of _listeners) fn(route); 34 + for (const fn of [..._listeners]) fn(route); 35 35 } 36 36 37 37 window.addEventListener('popstate', _notify);