@ducci/jarvis 1.0.76 → 1.0.77

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ducci/jarvis",
3
- "version": "1.0.76",
3
+ "version": "1.0.77",
4
4
  "description": "A fully automated agent system that lives on a server.",
5
5
  "main": "./src/index.js",
6
6
  "type": "module",
package/src/server/app.js CHANGED
@@ -196,8 +196,8 @@ function startServer() {
196
196
  app.locals.config = config;
197
197
 
198
198
  const PORT = config.port;
199
- app.listen(PORT, () => {
200
- console.log(`Jarvis server listening on port ${PORT}`);
199
+ app.listen(PORT, '127.0.0.1', () => {
200
+ console.log(`Jarvis server listening on 127.0.0.1:${PORT}`);
201
201
  startTelegramChannel(config);
202
202
  });
203
203
  }