diff --git a/src/Module/BaseApi.php b/src/Module/BaseApi.php index 9e7ee3836..f79832026 100644 --- a/src/Module/BaseApi.php +++ b/src/Module/BaseApi.php @@ -179,7 +179,7 @@ class BaseApi extends BaseModule private static function checkBearer(string $authorization) { - return(strpos($authorization, 'Bearer ') !== false); + return (substr($authorization, 0, 7) == 'Bearer '); } private static function getUserByBearer(string $authorization)