Skip to content

Commit 944c85b

Browse files
committed
fix(conn): password can be set when username unset when mqttv5
1 parent 0d4144d commit 944c85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

writeToStream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function connect (packet, stream, opts) {
200200

201201
// Password
202202
if (password != null) {
203-
if (!providedUsername) {
203+
if (!providedUsername && protocolVersion !== 5) {
204204
stream.destroy(new Error('Username is required to use password'))
205205
return false
206206
}

0 commit comments

Comments
 (0)