Query login token for puzzle DLC api

This commit is contained in:
tobspr 2021-06-19 13:18:38 +02:00
parent 291614cb3c
commit e4c1355e9c
1 changed files with 9 additions and 3 deletions

View File

@ -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 });
}