From 4bc17d156d24a5afb659fdc95ae442200e596fb1 Mon Sep 17 00:00:00 2001 From: fullgream Date: Sat, 16 Aug 2025 18:01:35 +0300 Subject: [PATCH] Fix 'add' to 'create' (: --- server/api/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/api/index.js b/server/api/index.js index c09fcef..0e22584 100644 --- a/server/api/index.js +++ b/server/api/index.js @@ -24,6 +24,7 @@ class APIMethods { info (con, req, cb) { const serverInfo = require("./server-info"); + cb({ result: serverInfo, trace_id: req.trace_id, ended: true }); } @@ -88,7 +89,7 @@ class API { } decrypt (address, bytes) { - throw new Error("Deprecated. Use TLS. If you see this error, please, add issue into: https://git.fullgream.tech/fullgream/ai-adventure-labs/issues"); + throw new Error("Deprecated. Use TLS. If you see this error, please, create issue into: https://git.fullgream.tech/fullgream/ai-adventure-labs/issues"); } async exec (connection, bytes, cb) {