mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 22:17:41 +03:00
Fix client.rs - properly return Err on invalid header (fix #28)
This commit is contained in:
parent
0f148c58d3
commit
fcde6ff689
1 changed files with 3 additions and 1 deletions
|
@ -56,7 +56,9 @@ pub async fn canonical_path(path: String) -> Result<Option<String>, String> {
|
|||
// If Reddit responds with a 301, then the path is redirected.
|
||||
301 => match res.headers().get(header::LOCATION) {
|
||||
Some(val) => {
|
||||
let original = val.to_str().unwrap();
|
||||
let Some(original) = val.to_str().ok() else {
|
||||
return Err("Unable to decode Location header.".to_string());
|
||||
};
|
||||
// We need to strip the .json suffix from the original path.
|
||||
// In addition, we want to remove share parameters.
|
||||
// Cut it off here instead of letting it propagate all the way
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue