We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8751f1f commit 54a04e0Copy full SHA for 54a04e0
src/claude_gateway.ts
@@ -40,7 +40,10 @@ function connectSSEBackend() {
40
const source = new EventSource(backendUrlSse);
41
source.onopen = (evt: Event) => resolve(clearTimeout(timer));
42
source.addEventListener("endpoint", (e) => {
43
- backendUrlMsg = `${baseUrl}${e.data}`;
+ // 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}`;
47
debug(`--- SSE backend sent "endpoint" event (${e.data}) ==> Setting message endpoint URL: "${backendUrlMsg}"`);
48
});
49
source.addEventListener("error", (e) => reject(e));
0 commit comments