diff --git a/src/utils/hydra.ts b/src/utils/hydra.ts index 3bd9b78d..153a4020 100644 --- a/src/utils/hydra.ts +++ b/src/utils/hydra.ts @@ -61,7 +61,7 @@ export class Hydra { this.url.protocol = this.url.protocol.replace("ws", "http"); const websocketUrl = new URL(url); websocketUrl.protocol = websocketUrl.protocol.replace("http", "ws"); - this.connection = new WebSocket(websocketUrl + "?history=no"); + this.connection = new WebSocket(websocketUrl + "&history=no"); this.connection.onopen = () => { console.log("Connected to Hydra"); };