mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-19 06:01:14 +00:00
Release v0.22.5
This commit is contained in:
parent
93d000b19d
commit
295f51b53f
14 changed files with 133 additions and 121 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue