From e94bcf4cb516b9a8b10bea4574551146cd679926 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 18 Jan 2023 04:02:53 -0500 Subject: [PATCH] *Override the host to be a websocket specific host --- src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index 7169238..d24ecbe 100644 --- a/src/index.ts +++ b/src/index.ts @@ -47,10 +47,10 @@ async function handleDiscover(aq: ActiveQuery): Promise { return; } - const ret = await DiscoveryIRC( - aq.callerInput.pubkey, - aq.callerInput?.options - ); + const ret = await DiscoveryIRC(aq.callerInput.pubkey, { + host: "liberta.casa", + ...aq.callerInput?.options, + }); aq.respond(ret); }