This commit is contained in:
starnakin 2023-12-20 19:10:26 +01:00
parent 0e946b3bb8
commit 4f0b2250bd
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class Account
if (JSON.stringify(response_data) == JSON.stringify({'detail': 'Authentication credentials were not provided.'})) if (JSON.stringify(response_data) == JSON.stringify({'detail': 'Authentication credentials were not provided.'}))
{ {
this.client._logged = false; this.client._update_logged(false);
return null; return null;
} }
if (response_data == "user deleted") if (response_data == "user deleted")

View File

@ -8,7 +8,7 @@ class MatchMaking
constructor(client) constructor(client)
{ {
/** /**
* @type {client} * @type {Client}
*/ */
this.client = client this.client = client
} }