Skip to content

Commit

Permalink
fix control message serde looking for wrong tag identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
LPardue committed Mar 10, 2025
1 parent 0e6f4ad commit d442d36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qlog/src/events/moqt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ pub struct MOQTExtensionHeader {

#[serde_with::skip_serializing_none]
#[derive(Serialize, Deserialize, Clone, PartialEq, Eq, Debug)]
#[serde(tag = "frame_type")]
#[serde(tag = "name")]
#[serde(rename_all = "snake_case")]
// Strictly, the qlog spec says that all these control messages have a type
// field. But instead of making that a rust object property, just use serde to
Expand Down

0 comments on commit d442d36

Please sign in to comment.