aicq-openclaw-plugin 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11876,7 +11876,7 @@ var plugin = definePluginEntry({
|
|
|
11876
11876
|
logger,
|
|
11877
11877
|
html: managementHtml
|
|
11878
11878
|
});
|
|
11879
|
-
const mgmtPort = parseInt(process.env.AICQ_MGMT_PORT || "
|
|
11879
|
+
const mgmtPort = parseInt(process.env.AICQ_MGMT_PORT || "16888", 10);
|
|
11880
11880
|
const mgmtServer = http.createServer((req, res) => {
|
|
11881
11881
|
managementHandler(req, res).catch((err) => {
|
|
11882
11882
|
logger.error("[HTTP] Management server error: " + (err instanceof Error ? err.message : err));
|