9 lines
268 B
JavaScript
9 lines
268 B
JavaScript
#include bsky.jsx
|
|
#include fedi.jsx
|
|
|
|
(() => {
|
|
if(location.pathname === '/bsky' || location.pathname.startsWith('/bsky/'))
|
|
MszRedirectsBsky();
|
|
if(location.pathname === '/fedi' || location.pathname.startsWith('/fedi/'))
|
|
MszRedirectsFedi();
|
|
})();
|