fix: log page type error (close #154)

This commit is contained in:
CaIon
2024-04-03 23:57:49 +08:00
parent 3d0f77ffb6
commit a33f685f3c
2 changed files with 5 additions and 5 deletions

View File

@@ -120,14 +120,14 @@ func SendEmailVerification(c *gin.Context) {
})
return
}
if config.EmailDomainRestrictionEnabled {
if common.EmailDomainRestrictionEnabled {
parts := strings.Split(email, "@")
localPart := parts[0]
domainPart := parts[1]
containsSpecialSymbols := strings.Contains(localPart, "+") || strings.Count(localPart, ".") > 1
allowed := false
for _, domain := range config.EmailDomainWhitelist {
for _, domain := range common.EmailDomainWhitelist {
if domainPart == domain {
allowed = true
break