mirror of
https://github.com/tobspr/shapez.io.git
synced 2026-03-02 03:39:21 +00:00
Query login token for puzzle DLC api
This commit is contained in:
@@ -101,9 +101,15 @@ export class ClientAPI {
|
||||
*/
|
||||
apiTryLogin() {
|
||||
if (!G_IS_STANDALONE) {
|
||||
const token = window.prompt(
|
||||
"Please enter the auth token for the puzzle DLC (If you have none, you can't login):"
|
||||
);
|
||||
let token = window.localStorage.getItem("dev_api_auth_token");
|
||||
if (!token) {
|
||||
token = window.prompt(
|
||||
"Please enter the auth token for the puzzle DLC (If you have none, you can't login):"
|
||||
);
|
||||
}
|
||||
if (token) {
|
||||
window.localStorage.setItem("dev_api_auth_token", token);
|
||||
}
|
||||
return Promise.resolve({ token });
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user