From 2ffbcce77fc7e9725e92af2d4e12a7a06ba5dc1c Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Debian Linux)" <rob@synchro.net> Date: Tue, 10 Dec 2024 13:40:46 -0800 Subject: [PATCH] presence_lib no longer defines extended_status() and we weren't using that function here anyway, so require(..., 'node_status') instead. --- webv4/root/api/system.ssjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webv4/root/api/system.ssjs b/webv4/root/api/system.ssjs index f93ad8d6a5..f0a7016aac 100644 --- a/webv4/root/api/system.ssjs +++ b/webv4/root/api/system.ssjs @@ -1,6 +1,6 @@ require('sbbsdefs.js', 'SYS_CLOSED'); require('nodedefs.js', 'NODE_WFC'); -require("presence_lib.js", 'extended_status'); +require("presence_lib.js", 'node_status'); var settings = load('modopts.js', 'web') || { web_directory: '../webv4' }; load(settings.web_directory + '/lib/init.js'); @@ -119,4 +119,4 @@ http_reply.header['Content-Type'] = 'application/json'; http_reply.header['Content-Length'] = reply.length; write(reply); -reply = undefined; \ No newline at end of file +reply = undefined; -- GitLab