Skip to content

Commit

Permalink
chore: fix beta (1.73) clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed Aug 28, 2023
1 parent c17ba86 commit 303a3b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/extensions/idle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ impl<T: Read + Write + Unpin + fmt::Debug + Send> Handle<T> {
while let Some(Ok(resp)) = interruptible_stream.next().await {
let resp = resp?;
match resp.parsed() {
Response::Data { status, .. } if status == &Status::Ok => {
Response::Data {
status: Status::Ok, ..
} => {
// all good continue
}
Response::Continue { .. } => {
Expand Down

0 comments on commit 303a3b3

Please sign in to comment.