Skip to content

Commit ac072a7

Browse files
committed
Fix incorrect empty check
1 parent f4c4b6c commit ac072a7

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
@@ -50,7 +50,7 @@ public function handle(?string $task = null): void
5050

5151
$this->setQueue();
5252

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

0 commit comments

Comments
 (0)