Skip to content

Commit

Permalink
fix: warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tetter27 committed Oct 30, 2024
1 parent 5219d47 commit 39e9134
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions moqt-client-sample/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ async fn uni_directional_stream_read_thread(
if !header_read {
data_stream_type = match object_header_handler(callbacks.clone(), &mut buf).await {
Ok(v) => v,
Err(e) => {
Err(_e) => {
break;
}
};
Expand Down Expand Up @@ -1238,9 +1238,6 @@ async fn uni_directional_stream_read_thread(
return Err(js_sys::Error::new(&e.to_string()).into());
}
}
_ => {
unimplemented!()
}
}
}
}
Expand Down

0 comments on commit 39e9134

Please sign in to comment.