diff --git a/src/api/routes/auth/sessions.ts b/src/api/routes/auth/sessions.ts index a566f7760..e2cdca0c8 100644 --- a/src/api/routes/auth/sessions.ts +++ b/src/api/routes/auth/sessions.ts @@ -71,7 +71,9 @@ router.post( } for (const session of sessions) { + console.log("Session pre remove:", session); await session.remove(); + console.log("Session post remove:", session); await emitEvent({ session_id: session.session_id, event: "SB_SESSION_REMOVE",