From 09373fe9db8c55d1042952fb60859197c2a2b6e7 Mon Sep 17 00:00:00 2001 From: Paul Radt Date: Mon, 30 Mar 2020 13:12:19 +0200 Subject: [PATCH] Fix invalid query --- Admin/LiveBroadcastAdmin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Admin/LiveBroadcastAdmin.php b/Admin/LiveBroadcastAdmin.php index 8d83390..1227c0f 100644 --- a/Admin/LiveBroadcastAdmin.php +++ b/Admin/LiveBroadcastAdmin.php @@ -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); } /**