10 lines
268 B
JavaScript
10 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();
|
||
|
})();
|