Skip to content

Remove unecessary required fields count when exclude_none is set #1708

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/serializers/fields.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,6 @@ impl GeneralFieldsSerializer {
let key_str = key_str(&key)?;
let op_field = self.fields.get(key_str);
if extra.exclude_none && value.is_none() {
if let Some(field) = op_field {
if field.required {
used_req_fields += 1;
}
}
continue;
}
let field_extra = Extra {
Expand Down
Loading