Skip to content

Commit

Permalink
check: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
hongcha98 committed Oct 10, 2023
1 parent cb8ff9b commit 6d4fa46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/media/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub fn count_send(md: &MediaDescription) -> usize {
if !val.starts_with("send ") {
break;
}
count += val.replace("send ", "").split(";").count() - minus;
count += val.replace("send ", "").split(';').count() - minus;
break;
}
_ => {}
Expand Down

0 comments on commit 6d4fa46

Please sign in to comment.