From 83b210783addc9f28d83febca4c9de7203ac52ad Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Sun, 12 May 2024 01:48:45 -0600 Subject: [PATCH] Fix console log message in index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 659c758..e224757 100644 --- a/index.js +++ b/index.js @@ -455,7 +455,7 @@ xmpp.on("online", async (address) => { var curUUID = generateUUID(); // Join all channels iem.channels.forEach((channel => { - console.log(`${colors.cyan("[INFO]")} Joining ${channel.jid.split("@")[0]}:${channel.name}`) + console.log(`${colors.cyan("[INFO]")} Joining ${channel.jid}/${channel.name}/${curUUID}`) //xmpp.send(xml("presence", { to: `${channel.jid}/${channel.jid.split("@")[0]}` })); xmpp.send(xml("presence", { to: `${channel.jid}/${channel.name}/${curUUID}` }, xml("item", { role: "visitor" }))); }))