Skip to content

Commit

Permalink
fix CreateWithHandle param order
Browse files Browse the repository at this point in the history
  • Loading branch information
Southclaws committed Nov 22, 2024
1 parent a6bb12d commit 34d3ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/account/register/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ func (s *Registrar) GetOrCreateViaHandle(
return &sessionAccount, nil
}

return s.CreateWithHandle(ctx, service, identifier, authName, token, name, handle)
return s.CreateWithHandle(ctx, service, authName, identifier, token, name, handle)

default:
// switch block covers all cases.
Expand Down

0 comments on commit 34d3ace

Please sign in to comment.