Skip to content

Commit

Permalink
BrpQueryRow has field deserialization fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Leinnan authored Dec 2, 2024
1 parent 56d5591 commit 03b85ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_remote/src/builtin_methods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ pub struct BrpQueryRow {
pub components: HashMap<String, Value>,

/// The boolean-only containment query results.
#[serde(skip_serializing_if = "HashMap::is_empty")]
#[serde(skip_serializing_if = "HashMap::is_empty", default)]
pub has: HashMap<String, Value>,
}

Expand Down

0 comments on commit 03b85ba

Please sign in to comment.