We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a4d2bd commit ceeb545Copy full SHA for ceeb545
src/VerifierServer/OAuth2Authenticator.php
@@ -238,12 +238,12 @@ public function getToken(
238
public function getUser(): ?object
239
{
240
if (isset($this->user)) {
241
- return $this->user;
+ return $this->sessions[$this->endpoint_name][$this->requesting_ip]['user'] = $this->user;
242
}
243
if (! isset($this->issuer, $this->userinfo_endpoint, $this->access_token)) {
244
return null;
245
246
- return $this->user = $this->apiRequest("{$this->issuer}{$this->userinfo_endpoint}");
+ return $this->sessions[$this->endpoint_name][$this->requesting_ip]['user'] = $this->user = $this->apiRequest("{$this->issuer}{$this->userinfo_endpoint}");
247
248
249
public function isAuthed(): bool
0 commit comments