Release v0.22.5

This commit is contained in:
Mario Zechner 2025-12-17 01:22:13 +01:00
parent 93d000b19d
commit 295f51b53f
14 changed files with 133 additions and 121 deletions

View file

@ -203,6 +203,10 @@ export class SessionManager {
// Use custom session file path
this.sessionFile = resolve(customSessionPath);
this.loadSessionId();
// If file doesn't exist, loadSessionId() won't set sessionId, so generate one
if (!this.sessionId) {
this.sessionId = uuidv4();
}
// Mark as initialized since we're loading an existing session
this.sessionInitialized = existsSync(this.sessionFile);
// Load entries into memory