Skip to content
Draft
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
2 changes: 2 additions & 0 deletions syncserver/src/web/extractors/bso_bodies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ impl FromRequest for BsoBodies {
return future::err(make_error());
};

drop(body);

// Validate all the BSO's, move invalid to our other list. Assume they'll all make
// it with our pre-allocation
let mut valid: Vec<BatchBsoBody> = Vec::with_capacity(bsos.len());
Expand Down
Loading