Skip to content

Commit

Permalink
fix: Grab the main character's token as a baseline for scopes (#678)
Browse files Browse the repository at this point in the history
  • Loading branch information
tehraven authored May 23, 2024
1 parent 985ac64 commit 7f489e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"guzzlehttp/guzzle": "^7.0",
"intervention/image": "^2.0",
"laravel/framework": "^10.0",
"laravel/horizon": "^5.0",
"laravel/horizon": "^5.24.4",
"laravel/socialite": "^5.0",
"laravel/ui": "^4.0",
"lasserafn/php-initial-avatar-generator": "^4.2",
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Controllers/Auth/SsoController.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function redirectToProvider($profile = null)
// in case the user is already authenticated - we're in a link flow
if (auth()->check()) {
// attempt to determine a used scopes and apply the same pattern for the newly linked character
$token = auth()->user()->refresh_tokens->first();
$token = auth()->user()->main_character()->refresh_token;

if (! is_null($token))
$used_scopes = $token->scopes;
Expand Down

0 comments on commit 7f489e7

Please sign in to comment.