mqtt-packet
Advanced tools
Comparing version 6.8.0 to 6.8.1
{ | ||
"name": "mqtt-packet", | ||
"version": "6.8.0", | ||
"version": "6.8.1", | ||
"description": "Parse and generate MQTT packets like a breeze", | ||
@@ -5,0 +5,0 @@ "main": "mqtt.js", |
@@ -116,3 +116,3 @@ const protocol = require('./constants') | ||
(clientId || protocolVersion >= 4) && (clientId || clean)) { | ||
length += clientId.length + 2 | ||
length += Buffer.byteLength(clientId) + 2 | ||
} else { | ||
@@ -119,0 +119,0 @@ if (protocolVersion < 4) { |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
151114
4858