mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
More succinct fix to header parsing
This commit is contained in:
parent
3609564db0
commit
95373f8261
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ pub async fn canonical_path(path: String) -> Result<Option<String>, String> {
|
||||||
// If Reddit responds with a 301, then the path is redirected.
|
// If Reddit responds with a 301, then the path is redirected.
|
||||||
301 => match res.headers().get(header::LOCATION) {
|
301 => match res.headers().get(header::LOCATION) {
|
||||||
Some(val) => {
|
Some(val) => {
|
||||||
let Some(original) = val.to_str().ok() else {
|
let Ok(original) = val.to_str() else {
|
||||||
return Err("Unable to decode Location header.".to_string());
|
return Err("Unable to decode Location header.".to_string());
|
||||||
};
|
};
|
||||||
// We need to strip the .json suffix from the original path.
|
// We need to strip the .json suffix from the original path.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue