Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Dec 4, 2023
1 parent 361acc4 commit 1998b5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webrtc/src/api/media_engine/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ impl MediaEngine {
typ: RTPCodecType,
) -> Result<()> {
let mut negotiated_header_extensions = self.negotiated_header_extensions.lock();
let mut propsed_header_extensions = self.proposed_header_extensions.lock();
let mut proposed_header_extensions = self.proposed_header_extensions.lock();

for local_extension in &self.header_extensions {
if local_extension.uri != extension {
Expand Down Expand Up @@ -584,7 +584,7 @@ impl MediaEngine {
}

// Clear any proposals we had for this id
propsed_header_extensions.remove(&id);
proposed_header_extensions.remove(&id);
}
Ok(())
}
Expand Down

0 comments on commit 1998b5a

Please sign in to comment.