diff --git a/src/client.rs b/src/client.rs index 003c66c..5dce96a 100644 --- a/src/client.rs +++ b/src/client.rs @@ -56,7 +56,7 @@ pub async fn canonical_path(path: String) -> Result, String> { // If Reddit responds with a 301, then the path is redirected. 301 => match res.headers().get(header::LOCATION) { 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()); }; // We need to strip the .json suffix from the original path.