This commit is contained in:
2026-08-17 23:06:07 +02:00
parent a7e53ca0a3
commit 2a2b01bf59
10 changed files with 9 additions and 52 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ type UserSessionState struct {
func (s *Service) UserSessionState(ctx context.Context, userID uuid.UUID) (UserSessionState, error) {
var st UserSessionState
err := s.Pool.QueryRow(ctx, `
SELECT is_active, session_version
SELECT COALESCE(is_active, false), COALESCE(session_version, 0)
FROM users
WHERE id = $1`, userID).Scan(&st.Active, &st.Version)
if isUndefinedColumn(err) {