alpha
Login
or
Join now
willdot.net
/
distributed-pds
forked from
willdot.net/cocoon
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A fork of the Cocoon PDS but being made more distributed.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix verification check
author
Hailey
date
1 year ago
(Mar 29, 2025, 5:33 PM -0700)
commit
9edbcc7a
9edbcc7ac2a7db0f96547f83ca8004acd1d0a0ac
parent
6310f91c
6310f91c94d1098d3b75d21c072b28a15c31a51f
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
server
handle_server_confirm_email.go
+1
-1
server/handle_server_confirm_email.go
Reviewed
···
33
33
return helpers.InputError(e, to.StringPtr("InvalidToken"))
34
34
}
35
35
36
36
-
if err := s.db.Exec("UPDATE repos SET email_verification_token = NULL, email_confirmed_at = NOW() WHERE did = ?", urepo.Repo.Did).Error; err != nil {
36
36
+
if err := s.db.Exec("UPDATE repos SET email_verification_code = NULL, email_confirmed_at = NOW() WHERE did = ?", urepo.Repo.Did).Error; err != nil {
37
37
s.logger.Error("error updating user", "error", err)
38
38
return helpers.ServerError(e, nil)
39
39
}