shadowx-fca 2.6.0 → 2.7.0

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": "shadowx-fca",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "Unofficial Facebook Chat API for Node.js with Auto-Update System - modify by Mueid Mursalin Rifat",
5
5
  "main": "index.js",
6
6
  "files": [
package/src/listenMqtt.js CHANGED
@@ -114,11 +114,11 @@ function listenMqtt(defaultFuncs, api, ctx, globalCallback) {
114
114
 
115
115
  // Display connection success message with branding and loading animation
116
116
  const messages = [
117
- '\n🖤 SHADOWX-FCA MQTT Connected',
117
+ '🖤 SHADOWX-FCA MQTT Connected',
118
118
  `🔰 Region: ${ctx.region || 'PNB'}`,
119
119
  `🔄 Auto-reconnect: ${ctx.globalOptions.autoReconnect ? 'Enabled' : 'Disabled'}${ctx.globalOptions.autoReconnect ? ' (reconnects every 3s on disconnect)' : ''}`,
120
120
  `🧬 MQTT Restart Interval: ${(ctx.globalOptions.restartListenMqtt && ctx.globalOptions.restartListenMqtt.enable) ? `${ctx.globalOptions.restartListenMqtt.timeRestart / 1000}s` : 'Disabled'}`,
121
- '🔖Author: Mueid Mursalin Rifat\n'
121
+ '🔖Author: Mueid Mursalin Rifat'
122
122
  ];
123
123
 
124
124
  let index = 0;