Skip to content

Commit 54a04e0

Browse files
authored
use the endpoint from the SSE server (assuming e.g. that apiKey parameter is not needed anymore) (#6)
1 parent 8751f1f commit 54a04e0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/claude_gateway.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ function connectSSEBackend() {
4040
const source = new EventSource(backendUrlSse);
4141
source.onopen = (evt: Event) => resolve(clearTimeout(timer));
4242
source.addEventListener("endpoint", (e) => {
43-
backendUrlMsg = `${baseUrl}${e.data}`;
43+
// Extract base URL without path and query parameters
44+
const urlObj = new URL(baseUrl);
45+
const baseWithoutPath = `${urlObj.protocol}//${urlObj.host}`;
46+
backendUrlMsg = `${baseWithoutPath}${e.data}`;
4447
debug(`--- SSE backend sent "endpoint" event (${e.data}) ==> Setting message endpoint URL: "${backendUrlMsg}"`);
4548
});
4649
source.addEventListener("error", (e) => reject(e));

0 commit comments

Comments
 (0)