Skip to content

Commit

Permalink
Fix incorrect empty check
Browse files Browse the repository at this point in the history
  • Loading branch information
marickvantuil committed Jan 30, 2024
1 parent 5774096 commit b692202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TaskHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function handle(?string $task = null): void

$this->setQueue();

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

Expand Down

0 comments on commit b692202

Please sign in to comment.