From 57a4e6dd157d522abb0a73b3574fc3603ab9f609 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Sat, 10 May 2025 07:26:44 +0530 Subject: [PATCH] Update err copy --- server/pkg/controller/user/srp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/pkg/controller/user/srp.go b/server/pkg/controller/user/srp.go index f8349cdefa..788d779ac1 100644 --- a/server/pkg/controller/user/srp.go +++ b/server/pkg/controller/user/srp.go @@ -104,7 +104,7 @@ func (c *UserController) GetSRPAttributes(context *gin.Context, email string) (* } if limit, limitErr := c.SRPLimiter.Get(context, "get_srp"); limitErr == nil { if limit.Reached { - c.DiscordController.NotifyPotentialAbuse("hitting srp limit") + c.DiscordController.NotifyPotentialAbuse("swallowing missing srp errors") return fSrpAttributes(email, c.HashingKey) } }