Skip to content

Commit

Permalink
fix(TransferFrame): accidentally forced type for delivery tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Nov 4, 2015
1 parent 3012962 commit 91e9fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/frames/transfer_frame.js
Expand Up @@ -220,7 +220,7 @@ TransferFrame.prototype._getPerformative = function() {
return new DescribedType(TransferFrame, {
handle: new ForcedType('uint', self.handle),
deliveryId: new ForcedType('uint', self.deliveryId),
deliveryTag: new ForcedType('uint', self.deliveryTag),
deliveryTag: self.deliveryTag,
messageFormat: new ForcedType('uint', self.messageFormat),
settled: self.settled,
more: self.more,
Expand Down

0 comments on commit 91e9fd3

Please sign in to comment.