From b118ab56be45bae35c1684e37596d8f51a9cd3b8 Mon Sep 17 00:00:00 2001 From: Simon Arnell <14029547+simonarnell@users.noreply.github.com> Date: Thu, 14 Mar 2024 14:53:38 +0000 Subject: [PATCH] Fix typo in error string. (#367) --- chirpstack/src/api/auth/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chirpstack/src/api/auth/mod.rs b/chirpstack/src/api/auth/mod.rs index e19df1ed..427c6035 100644 --- a/chirpstack/src/api/auth/mod.rs +++ b/chirpstack/src/api/auth/mod.rs @@ -35,7 +35,7 @@ pub fn auth_interceptor(mut req: Request<()>) -> Result, Status> { Some(v) => v, None => { return Err(Status::unauthenticated( - "authorization metadata must in format 'Bearer ", + "authorization metadata must be in format 'Bearer ", )); } };