We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2912159 + 4be4964 commit 2b900bfCopy full SHA for 2b900bf
1 file changed
src/Plugin/Authentication.php
@@ -72,7 +72,7 @@ public function handleRequest(RequestInterface $request, callable $next, callabl
72
$request = $request->withHeader('Authorization', $this->apikey);
73
74
if (null != $this->appkey) {
75
- if (!ctype_space($this->appkey)) {
+ if (ctype_alnum($this->appkey)) {
76
$request = $request->withHeader('Application-Key', $this->appkey);
77
}
78
0 commit comments