Skip to content

Commit

Permalink
check: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
hongcha98 committed Feb 4, 2024
1 parent 83c19bb commit 0a3d10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/libwish/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl Client {
let mut ice_servers = vec![];
for link in links {
let mut link = link.to_str()?.to_owned();
link = link.replacen(":", "://", 1);
link = link.replacen(':', "://", 1);
let link_header = parse_link_header::parse_with_rel(&link)?;
for (rel, mut link) in link_header {
if &rel != "ice-server" {
Expand Down

0 comments on commit 0a3d10e

Please sign in to comment.