Skip to content

Commit

Permalink
>= -> >
Browse files Browse the repository at this point in the history
  • Loading branch information
billiegoose authored Jun 26, 2024
1 parent 8412203 commit e7fc0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ exports.noisePayload = {
if (m.udx) udxInfo.preencode(state, m.udx)
if (m.secretStream) secretStreamInfo.preencode(state, m.secretStream)
if (m.relayThrough) relayThroughInfo.preencode(state, m.relayThrough)
if (m.timestamp >= 0) c.uint.preencode(state, m.timestamp)
if (m.timestamp > 0) c.uint.preencode(state, m.timestamp)
},
encode (state, m) {
let flags = 0
Expand Down

0 comments on commit e7fc0ee

Please sign in to comment.