Skip to content

Commit

Permalink
fix: Incorrect Data Feed Key
Browse files Browse the repository at this point in the history
  • Loading branch information
CalumTowers committed Aug 13, 2024
1 parent 320bc23 commit 9d94130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/NetworkData/ProcessNetworkData.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ProcessNetworkData extends Command
*/
public function handle()
{
$this->networkData = Http::get(config('services.vatsim-net.datafeed.base'));
$this->networkData = Http::get(config('services.vatsim-net.datafeed.url'));
$this->info('Getting network data from VATSIM.');

if ($this->networkData->failed() || ! $this->networkData->json()) {
Expand Down

0 comments on commit 9d94130

Please sign in to comment.