From 3dabc99a9fb07f7b03f385a7379cb317363f1c60 Mon Sep 17 00:00:00 2001 From: "Shishkevich D." <135337715+shishkevichd@users.noreply.github.com> Date: Sat, 3 May 2025 09:56:37 +0000 Subject: [PATCH] chore: format code --- web/service/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/user.go b/web/service/user.go index 595b08e2..a418cb4e 100644 --- a/web/service/user.go +++ b/web/service/user.go @@ -45,7 +45,7 @@ func (s *UserService) CheckUser(username string, password string, twoFactorCode return nil } - if !crypto.CheckPasswordHash(user.Password, password) { + if !crypto.CheckPasswordHash(user.Password, password) { return nil }