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); }