fix session routing and subagent visibility
This commit is contained in:
@@ -1,5 +1,16 @@
|
||||
"use client";
|
||||
|
||||
export function readSessionIdFromUrl() {
|
||||
if (typeof window === "undefined") return null;
|
||||
const match = window.location.pathname.match(/^\/session\/([^/]+)$/);
|
||||
if (!match?.[1]) return null;
|
||||
try {
|
||||
return decodeURIComponent(match[1]).trim() || null;
|
||||
} catch {
|
||||
return match[1].trim() || null;
|
||||
}
|
||||
}
|
||||
|
||||
export function pushSessionUrl(sessionId: string) {
|
||||
if (typeof window === "undefined") return;
|
||||
const target = `/session/${encodeURIComponent(sessionId)}`;
|
||||
|
||||
Reference in New Issue
Block a user