MCPcopy
hub / github.com/codeaashu/claude-code / setTeleportedSessionInfo

Function setTeleportedSessionInfo

src/bootstrap/state.ts:1477–1485  ·  view source on GitHub ↗
(info: {
  sessionId: string | null
})

Source from the content-addressed store, hash-verified

1475
1476// Teleported session tracking for reliability logging
1477export function setTeleportedSessionInfo(info: {
1478 sessionId: string | null
1479}): void {
1480 STATE.teleportedSessionInfo = {
1481 isTeleported: true,
1482 hasLoggedFirstMessage: false,
1483 sessionId: info.sessionId,
1484 }
1485}
1486
1487export function getTeleportedSessionInfo(): {
1488 isTeleported: boolean

Callers 2

runFunction · 0.85
useTeleportResumeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected