Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
hatoo committed Dec 20, 2023
1 parent b6d6755 commit e7d8be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ where
if let Some(data) = frame.data_ref() {
let _ = tx.unbounded_send(Ok(Frame::data(data.clone())));
} else if let Some(trailers) = frame.trailers_ref() {
let _ = tx.unbounded_send(Ok(Frame::trailers(trailers.clone().into())));
let _ = tx.unbounded_send(Ok(Frame::trailers(trailers.clone())));
}
Some((Ok(frame), (body, tx)))
}
Expand Down

0 comments on commit e7d8be3

Please sign in to comment.