Update register.go

This commit is contained in:
Alicia 2019-02-23 16:39:00 +00:00
parent 36e1f9955d
commit 3d40e03639
1 changed files with 5 additions and 1 deletions

View File

@ -96,7 +96,11 @@ func registerSubmit(c *gin.Context) {
errr := db.QueryRow("SELECT 1 FROM beta_keys WHERE key_md5 = ? AND allowed = 1", cmd5(c.PostForm("key")))
fmt.Printf("%v", errr)
if errr == nil {
i = 0
for errr.Next() {
i++
}
if errr == 0 {
registerResp(c, errorMessage{T(c, "Invalid Beta Key.")})
return
}