nodejs-insta-private-api-mqtt 1.3.18 → 1.3.19

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/dist/mqtt-shim.js CHANGED
@@ -155,7 +155,7 @@ class MqttClient extends EventEmitter {
155
155
  }, onConnect);
156
156
  } else {
157
157
  // Direct TLS Connection
158
- this.socket = tls.connect(port, host, { rejectUnauthorized: false }, onConnect);
158
+ this.socket = tls.connect(port, host, { rejectUnauthorized: true }, onConnect);
159
159
  }
160
160
 
161
161
  this.socket.on('data', (data) => this._handleData(data));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-insta-private-api-mqtt",
3
- "version": "1.3.18",
3
+ "version": "1.3.19",
4
4
  "description": "Complete Instagram MQTT protocol with FULL iOS + Android support. 33 device presets (21 iOS + 12 Android). iPhone 16/15/14/13/12, iPad Pro, Samsung, Pixel, Huawei. Real-time DM messaging, view-once media extraction, sub-500ms latency.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {