Skip to content

Commit e882b42

Browse files
cstocktonChris Stockton
and
Chris Stockton
authored
fix: propagate error when when confirming phone (#1939)
Propagate errors that occur when calling tx.UpdateOnly in internal/models/user.go:ConfirmPhone. Previously this line returned nil: https://github.com/supabase/auth/blob/097f01f39fa79d5e8e4e9c399a14e14405e3a142/internal/models/user.go#L471 Meaning that the next call to ClearAllOneTimeTokensForUser was ran even when the confirmation token could not be updated. https://github.com/supabase/auth/blob/master/internal/models/one_time_token.go#L119 Co-authored-by: Chris Stockton <[email protected]>
1 parent e408905 commit e882b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/models/user.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ func (u *User) ConfirmPhone(tx *storage.Connection) error {
468468
now := time.Now()
469469
u.PhoneConfirmedAt = &now
470470
if err := tx.UpdateOnly(u, "confirmation_token", "phone_confirmed_at"); err != nil {
471-
return nil
471+
return err
472472
}
473473

474474
return ClearAllOneTimeTokensForUser(tx, u.ID)

0 commit comments

Comments
 (0)