This commit is contained in:
imnyang 2024-09-10 22:38:25 +09:00
commit 46852f1a7e
2 changed files with 13 additions and 3 deletions

View file

@ -21,9 +21,9 @@ function App() {
console.log('Furry sequence detected!');
const random = Math.random();
if (random < 0.1) {
document.location.href = 'https://wh64.net?from=imnyang_root_page';
document.location.href = `https://wh64.net?from=imnyang_root_${(Math.random() + 1).toString(36).substring(7)}page`;
} else {
document.location.href = 'https://ny64.kr?from=imnyang_root_page';
document.location.href = `https://ny64.kr?from=imnyang_root_${(Math.random() + 1).toString(36).substring(7)}page`;
}
}
};