Skip to content

Commit

Permalink
dont forget to marshal the sender in the header
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxVerevkin committed Mar 23, 2024
1 parent 780304d commit b3d6d6b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rustbus/src/wire/marshal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ fn marshal_header(
if let Some(dest) = &msg.dynheader.destination {
marshal_header_destination(byteorder, dest, buf)?;
}
if let Some(sender) = &msg.dynheader.sender {
marshal_header_sender(byteorder, sender, buf)?;
}
if let Some(mem) = &msg.dynheader.member {
marshal_header_member(byteorder, mem, buf)?;
}
Expand Down

0 comments on commit b3d6d6b

Please sign in to comment.