From e93b08d8355e12ab951c53cf101221b44ae54e71 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Wed, 8 May 2024 07:46:11 -0600 Subject: [PATCH] Add channel ids to startup log --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2dffd06..48e734a 100644 --- a/index.js +++ b/index.js @@ -226,7 +226,7 @@ xmpp.on("online", async (address) => { // Join all channels config.iem.channels.forEach((channel => { - console.log(`Joining ${channel.name}`) + console.log(`Joining ${channel.jid.split("@")[0]}:${channel.name}`) xmpp.send(xml("presence", { to: `${channel.jid}/${channel.jid.split("@")[0]}` })); }))