diff --git a/server/controllers/auth.go b/server/controllers/auth.go index a22fc6bc..36902e5e 100644 --- a/server/controllers/auth.go +++ b/server/controllers/auth.go @@ -26,7 +26,7 @@ func Login(c *gin.Context) { ip := c.ClientIP() count, ok := loginCache.Get(ip) if ok && count >= defaultTimes { - common.ErrorStrResp(c, "Too many unsuccessful sign-in attempts have been made using an incorrect username or password. Try again later.", 403) + common.ErrorStrResp(c, "Too many unsuccessful sign-in attempts have been made using an incorrect username or password, Try again later.", 403) loginCache.Expire(ip, defaultDuration) return }