From c00dce79dc5eb0fb71652a6c0c36fa7fa193395f Mon Sep 17 00:00:00 2001 From: Uewotm90 <61500734+Uewotm90@users.noreply.github.com> Date: Thu, 7 Dec 2023 10:42:08 +0100 Subject: [PATCH] fmt --- src/api/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() })