fix(signal): correct import paths in ack-reaction.ts

Imports were using ../../agents, ../../channels etc. which resolve to
nonexistent paths under extensions/signal/. The correct pattern for
files in extensions/signal/src/monitor/ is ../../../../src/, matching
the convention used in event-handler.ts and other monitor files.
This commit is contained in:
minupla 2026-03-14 14:01:51 +00:00 committed by root
parent db178890fe
commit 29c3eebc84

View File

@ -3,10 +3,10 @@
* Call this BEFORE inboundDebouncer.enqueue() in event-handler.ts.
*/
import { resolveAckReaction } from "../../agents/identity.js";
import { shouldAckReaction } from "../../channels/ack-reactions.js";
import type { OpenClawConfig } from "../../config/config.js";
import { logVerbose } from "../../globals.js";
import { resolveAckReaction } from "../../../../src/agents/identity.js";
import { shouldAckReaction } from "../../../../src/channels/ack-reactions.js";
import type { OpenClawConfig } from "../../../../src/config/config.js";
import { logVerbose } from "../../../../src/globals.js";
import { resolveSignalReactionLevel } from "../reaction-level.js";
import { sendReactionSignal } from "../send-reactions.js";