mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-20 16:20:19 +00:00
Fix typo in error string. (#367)
This commit is contained in:
@ -35,7 +35,7 @@ pub fn auth_interceptor(mut req: Request<()>) -> Result<Request<()>, Status> {
|
|||||||
Some(v) => v,
|
Some(v) => v,
|
||||||
None => {
|
None => {
|
||||||
return Err(Status::unauthenticated(
|
return Err(Status::unauthenticated(
|
||||||
"authorization metadata must in format 'Bearer <TOKEN>",
|
"authorization metadata must be in format 'Bearer <TOKEN>",
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user