feat(account): #49 include tests
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 5m53s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 5m16s

This commit was merged in pull request #61.
This commit is contained in:
2025-05-09 17:09:03 +02:00
parent 5cfea4e2d3
commit 0203504f99
3 changed files with 234 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
}