Skip to content

Commit

Permalink
Fix invalid query
Browse files Browse the repository at this point in the history
  • Loading branch information
PouleR authored and paulradt committed Mar 30, 2020
1 parent 4b3840c commit 448b2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Admin/LiveBroadcastAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected function getHealthyChannelsQuery(): QueryBuilder
->from(AbstractChannel::class, 'channel')
->where('channel.isHealthy = :healthyParam')
->setParameter('healthyParam', true)
->orderBy('channel.discr, channel.name', Criteria::ASC);
->orderBy('channel.name', Criteria::ASC);
}

/**
Expand Down

0 comments on commit 448b2a8

Please sign in to comment.