Remove unneeded error checks

This commit is contained in:
Tom Wiesing 2024-04-08 22:52:37 +02:00
parent e259872bb5
commit b45233b87c
No known key found for this signature in database
3 changed files with 0 additions and 9 deletions

View file

@ -69,9 +69,6 @@ func (auth *Auth) User(ctx context.Context, name string) (user *AuthUser, err er
if err != nil {
return
}
if err != nil {
return
}
user = &AuthUser{}