Skip to content

Commit

Permalink
Fix incorrect column name for registration token
Browse files Browse the repository at this point in the history
Oversight from the database renamings, I suppose.

Fixes #1691.
  • Loading branch information
franzliedke committed Dec 9, 2018
1 parent 0d16fac commit 67f9375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Forum/Auth/ResponseFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function make(string $provider, string $identifier, callable $configureRe
$provided,
$registration->getSuggested(),
[
'token' => $token->id,
'token' => $token->token,
'provided' => array_keys($provided)
]
));
Expand Down

0 comments on commit 67f9375

Please sign in to comment.