@agenshield/integrations 0.7.0 → 0.7.1
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -848,7 +848,7 @@ async function getOpenClawDashboardUrl() {
|
|
|
848
848
|
if (!port || !token) {
|
|
849
849
|
return { success: false, error: "Gateway port or auth token not found in openclaw.json" };
|
|
850
850
|
}
|
|
851
|
-
const url = `
|
|
851
|
+
const url = `http://127.0.0.1:${port}/?token=${token}`;
|
|
852
852
|
return { success: true, url };
|
|
853
853
|
} catch (error) {
|
|
854
854
|
return { success: false, error: `Failed to get dashboard URL: ${error.message}` };
|