fix: correct import path to reply-runtime

This commit is contained in:
operator
2026-04-19 08:03:55 +00:00
parent 40e3aa9454
commit 543ebf5b55

View File

@@ -200,7 +200,7 @@ export default {
try { try {
// Dynamic import — resolved at runtime by OpenClaw's module system // Dynamic import — resolved at runtime by OpenClaw's module system
const sdkPath = 'openclaw/plugin-sdk/reply-dispatch-runtime'; const sdkPath = 'openclaw/plugin-sdk/reply-runtime';
const { dispatchInboundMessageWithDispatcher } = await import( const { dispatchInboundMessageWithDispatcher } = await import(
/* webpackIgnore: true */ sdkPath /* webpackIgnore: true */ sdkPath
); );