Fixes #11. Strip slashes from profile UUID in the authserver's response

This commit is contained in:
ErickSkrauch
2021-02-18 00:41:38 +01:00
parent 1fee15f74a
commit 9c6d9409ea
2 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ class AuthenticateData {
'accessToken' => $this->accessToken,
'clientToken' => $this->clientToken,
'selectedProfile' => [
'id' => $this->account->uuid,
'id' => str_replace('-', '', $this->account->uuid),
'name' => $this->account->username,
'legacy' => false,
],