Skip to content

Commit b692202

Browse files
committed
Fix incorrect empty check
1 parent 5774096 commit b692202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TaskHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function handle(?string $task = null): void
4949

5050
$this->setQueue();
5151

52-
if (!empty($this->config['app_engine'])) {
52+
if (empty($this->config['app_engine'])) {
5353
OpenIdVerificator::verify(request()->bearerToken(), $this->config);
5454
}
5555

0 commit comments

Comments
 (0)