Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/RT/Authen/ExternalAuth.pm
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ sub DoAuth {
if ( @{ RT->Config->Get('ExternalInfoPriority') } ) {
# Note that UpdateUserInfo does not care how we authenticated the user
# It will look up user info from whatever is specified in $RT::ExternalInfoPriority
($info_updated,$info_updated_msg) = RT::Authen::ExternalAuth::UpdateUserInfo($session->{'CurrentUser'}->Name);
($info_updated,$info_updated_msg) = RT::Authen::ExternalAuth::UpdateUserInfo(utf8::decode($session->{'CurrentUser'}->Name));
}

# Now that we definitely have up-to-date user information,
Expand Down