*Override the host to be a websocket specific host

This commit is contained in:
Derrick Hammer 2023-01-18 04:02:53 -05:00
parent 7e3440af17
commit e94bcf4cb5
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 4 deletions

View File

@ -47,10 +47,10 @@ async function handleDiscover(aq: ActiveQuery): Promise<void> {
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);
}