feat(account): #49 include tests
Some checks failed
Build Docker Image / Build-Docker-Image (push) Failing after 4m30s

This commit is contained in:
2025-05-09 17:09:03 +02:00
parent 5cfea4e2d3
commit d44a717e5f
3 changed files with 233 additions and 2 deletions

View File

@@ -338,7 +338,7 @@ func (db AuthSqlite) GetSession(sessionId string) (*types.Session, error) {
WHERE session_id = ?`, sessionId).Scan(&userId, &createdAt, &expiresAt)
if err != nil {
log.Warn("Session not found: %v", err)
log.Warn("Session \"%s\" not found: %v", sessionId, err)
return nil, ErrNotFound
}