Skip to content

Commit

Permalink
Merge pull request #151 from vatsimnetwork/development
Browse files Browse the repository at this point in the history
Hotfix 1.8.3b
  • Loading branch information
lieselwd authored Oct 19, 2024
2 parents 312d24c + 636a30a commit 25cb9b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Http/Livewire/Controllers/LtNewProcessed.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ public function filters(): array
if (in_array('RR', $selections)) {
unset($value[array_search('100', $value)]);
if (!empty($value)) {
$builder->where('random_routeing', '!=', null)->orWhereIn('track_id', array_values($value));
$builder->where('clx_messages.random_routeing', '!=', null)->orWhereIn('clx_messages.track_id', array_values($value));
} else {
$builder->where('random_routeing', '!=', null);
$builder->where('clx_messages.random_routeing', '!=', null);
}
}
else {
$builder->whereIn('track_id', array_values($value));
$builder->whereIn('clx_messages.track_id', array_values($value));
}
})
];
Expand Down

0 comments on commit 25cb9b7

Please sign in to comment.