mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 13:37:40 +03:00
chore: fix formatting
This commit is contained in:
parent
055382601b
commit
3e2327c51c
1 changed files with 3 additions and 11 deletions
14
src/utils.rs
14
src/utils.rs
|
@ -1131,17 +1131,9 @@ pub fn url_path_basename(path: &str) -> String {
|
|||
path.to_string()
|
||||
} else {
|
||||
let mut url = url_result.unwrap();
|
||||
url
|
||||
.path_segments_mut()
|
||||
.unwrap()
|
||||
.pop_if_empty();
|
||||
url.path_segments_mut().unwrap().pop_if_empty();
|
||||
|
||||
url
|
||||
.path_segments()
|
||||
.unwrap()
|
||||
.last()
|
||||
.unwrap()
|
||||
.to_string()
|
||||
url.path_segments().unwrap().last().unwrap().to_string()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1268,4 +1260,4 @@ fn test_url_path_basename() {
|
|||
assert_eq!(url_path_basename("https://doma.in/first/last"), "last");
|
||||
// empty path
|
||||
assert_eq!(url_path_basename("/"), "");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue