diff --git a/src/api/auth.rs b/src/api/auth.rs index 098a45f..280e3e4 100644 --- a/src/api/auth.rs +++ b/src/api/auth.rs @@ -265,7 +265,7 @@ impl RequestExt for Request { self.metadata().get("authorization").map(|token| { token .to_str() - .expect("failed to parse token string") + .expect("failed to parse token string") .trim_start_matches("Bearer ") .to_string() })