@jacexh/claude-web-console 0.12.3 → 0.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -390,9 +390,9 @@ export class SessionManager {
|
|
|
390
390
|
// For new sessions, start stream immediately — SDK may emit init messages
|
|
391
391
|
this.startStreamConsumer(tempId, session)
|
|
392
392
|
|
|
393
|
-
//
|
|
394
|
-
|
|
395
|
-
return
|
|
393
|
+
// SDK requires send() before sessionId is available.
|
|
394
|
+
// Return tempId now; real sessionId arrives via session_id_resolved WS event after first send().
|
|
395
|
+
return tempId
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
private fetchAndBroadcastModels(sessionId: string, session: SDKSession, currentModel?: string): void {
|