From 691eb49009b67dd1c82d8d449d8f6618f5062bc1 Mon Sep 17 00:00:00 2001 From: jdl Date: Mon, 15 Jun 2026 23:16:41 +0200 Subject: [PATCH] Bug fix from audit. --- hub/handlers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/hub/handlers.go b/hub/handlers.go index 851bd81..6c332e2 100644 --- a/hub/handlers.go +++ b/hub/handlers.go @@ -46,6 +46,7 @@ func (a *App) _signinSubmit(s *api.Session, w http.ResponseWriter, r *http.Reque sess, err := a.api.Session_SignIn(pwd) if err != nil { + time.Sleep(time.Second + time.Duration(rand.Int64N(int64(3*time.Second)))) return err }