mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	Fixes #11. Strip slashes from profile UUID in the authserver's response
This commit is contained in:
		@@ -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,
 | 
			
		||||
            ],
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user