Skip to content

Commit

Permalink
fixup! [Highways England] Initialise single-sign on
Browse files Browse the repository at this point in the history
  • Loading branch information
MorayMySoc committed Aug 15, 2024
1 parent f856972 commit 7cc0089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perllib/FixMyStreet/App/Controller/Auth/Social.pm
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ sub oidc_callback: Path('/auth/OIDC') : Args(0) {
}
my $message = '';
for my $key (sort keys %{$id_token->payload}) {
$message = $message . $key . " : " . $id_token->payload->{$key} . "\n" if $id_token->payload->{$key};
$message .= $key . " : " . $id_token->payload->{$key} . "\n" if $id_token->payload->{$key};
}
$c->log->debug($message) if $message;
# sanity check the token audience is us...
Expand Down

0 comments on commit 7cc0089

Please sign in to comment.