Skip to content

Commit

Permalink
Merge pull request #1 from zoonru/fix-mailru
Browse files Browse the repository at this point in the history
fix numeric prefix
  • Loading branch information
Alexandr-Penkin authored Oct 12, 2022
2 parents cda2dda + 8841376 commit ea9bbad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/Mailru.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function getUserProfile()
'secure' => 1,
'session_key' => $this->getStoredData('access_token'),
];
$sign = md5(http_build_query($params, null, '') . $this->clientSecret);
$sign = md5(http_build_query($params, '', '') . $this->clientSecret);

$param = [
'app_id' => $this->clientId,
Expand Down

0 comments on commit ea9bbad

Please sign in to comment.