Skip to content

Commit

Permalink
[Bug] Fix logic to check for existing server ID in SelectSpeedtestSer…
Browse files Browse the repository at this point in the history
…verJob (#1929)
  • Loading branch information
alexjustesen authored Dec 16, 2024
1 parent 165e132 commit 36cde05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Jobs/Ookla/SelectSpeedtestServerJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function handle(): void
}

// If the server id is already set, we don't need to do anything.
if (Arr::exists($this->result->data, 'server.id')) {
if (Arr::get($this->result->data, 'server.id')) {
return;
}

Expand Down

0 comments on commit 36cde05

Please sign in to comment.