Skip to content

Commit

Permalink
Fixed authentication issue
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkuipers committed Apr 12, 2020
1 parent 6f4b835 commit 8fa425e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"homepage": "https://github.com/ScoutingRudyardKipling/SOLAuthenticator",
"license": "MIT",
"version": "1.0.2",
"version": "1.0.3",
"authors": [
{
"name": "Mewp",
Expand Down
4 changes: 2 additions & 2 deletions src/SOLOpenIdClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function setUserIdentity($username)
$namespace = explode('/', $username);
$username = array_pop($namespace);

$this->identity = self::$snl_login_namespace . strtolower($username);
$this->claimed_id = $this->identity = self::$snl_login_namespace . strtolower($username);

return $this;
}
Expand Down Expand Up @@ -107,4 +107,4 @@ protected function sregParams()
];
}

}
}

0 comments on commit 8fa425e

Please sign in to comment.