Skip to content

Commit

Permalink
Merge branch 'develop' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
james-hollinger committed Feb 28, 2024
2 parents 6e89bb5 + 45fec32 commit 5d63969
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public async Task<bool> AssignRealmRole(Guid userId, string roleName)

public async Task<UserRepresentation?> FindUser(string username)
{
var result = await this.GetWithQueryParamsAsync<List<UserRepresentation>>("users", new { Username = username });
var result = await this.GetWithQueryParamsAsync<List<UserRepresentation>>("users", new { username });
if (!result.IsSuccess || result.Value.Count > 1)
{
this.Logger.LogFindUserError(username);
Expand Down

0 comments on commit 5d63969

Please sign in to comment.