From ffb4b9a65fea5555d0d401194d3fc3820b2e6766 Mon Sep 17 00:00:00 2001 From: Stanislav Chzhen Date: Thu, 14 Mar 2024 17:40:07 +0300 Subject: [PATCH] home: fix alignment --- internal/home/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/home/auth.go b/internal/home/auth.go index 097fdc7c9d7..18bc5668cab 100644 --- a/internal/home/auth.go +++ b/internal/home/auth.go @@ -54,11 +54,11 @@ func (s *session) deserialize(data []byte) bool { // Auth is the global authentication object. type Auth struct { + trustedProxies netutil.SubnetSet db *bbolt.DB rateLimiter *authRateLimiter sessions map[string]*session users []webUser - trustedProxies netutil.SubnetSet lock sync.Mutex sessionTTL uint32 }