Gateway: ack skipped hook transforms with 204

This commit is contained in:
Jared Verdi
2026-01-02 19:59:52 -05:00
committed by Peter Steinberger
parent 7e9be3c28c
commit 12e27f9e5e
3 changed files with 64 additions and 1 deletions

View File

@@ -1706,6 +1706,11 @@ export async function startGatewayServer(
sendJson(res, 400, { ok: false, error: mapped.error });
return true;
}
if (mapped.action === null) {
res.statusCode = 204;
res.end();
return true;
}
if (mapped.action.kind === "wake") {
dispatchWakeHook({
text: mapped.action.text,