Skip to content

Commit

Permalink
Merge pull request #1147 from Jurshsmith/upgrade-rust-toolchain-version
Browse files Browse the repository at this point in the history
Upgrade rust version in toolchain
  • Loading branch information
nazar-pc authored Aug 30, 2023
2 parents c2d6328 + 92be2b3 commit d6d5fcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.67.0"
channel = "1.72.0"
components = ["rustfmt", "clippy"]
2 changes: 1 addition & 1 deletion rust/src/ortc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ pub(crate) fn get_consumer_rtp_parameters(
if let Some(matched_cap_codec) = remote_rtp_capabilities
.codecs
.iter()
.find(|cap_codec| match_codecs(cap_codec.deref().into(), (&codec).into(), true).is_ok())
.find(|cap_codec| match_codecs((*cap_codec).into(), (&codec).into(), true).is_ok())
{
*codec.rtcp_feedback_mut() = matched_cap_codec
.rtcp_feedback()
Expand Down

0 comments on commit d6d5fcc

Please sign in to comment.