We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b0cbc commit 1446f5cCopy full SHA for 1446f5c
src/account.html
@@ -132,7 +132,7 @@
132
try {
133
const res = await fetch(`https://auth-api.itinerary.eu.org/auth/verifyToken/${PC}`);
134
const data = await res.json();
135
- const username = atob(data.username);
+ const username = btoa(data.username);
136
137
// Ban check (example logic)
138
if (username === 'PUT THE FIRST BANNED USER HERE') {
0 commit comments