Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gnought committed Jul 15, 2019
1 parent d57b772 commit 7286489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packet.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function Packet (original, broker) {
this.payload = original.payload || Buffer.alloc(0)
this.qos = original.qos || 0
this.retain = original.retain || false
this.dup = original.dup || false
this.dup = origianl.dup || false
// [MQTT-2.3.1-5]
if (this.qos > 0 || this.cmd !== 'publish') {
// [MQTT-2.3.1-1]
Expand Down

0 comments on commit 7286489

Please sign in to comment.