Skip to content

Commit

Permalink
Fix invalid query
Browse files Browse the repository at this point in the history
  • Loading branch information
paulradt committed Mar 30, 2020
1 parent 448b2a8 commit 09373fe
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.name', Criteria::ASC);
->orderBy('channel.channelName', Criteria::ASC);
}

/**
Expand Down

0 comments on commit 09373fe

Please sign in to comment.