Skip to content

Commit

Permalink
fix control message serde looking for wrong tag identifier (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
LPardue committed Mar 10, 2025
1 parent d442d36 commit 5c2f29f
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 = "name")]
#[serde(tag = "type")]
#[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 5c2f29f

Please sign in to comment.