Skip to content

Commit

Permalink
Channel list in Program Guide
Browse files Browse the repository at this point in the history
The Program Guide displayed by mythfrontend now shows only the
channels from videosources that are connected to a capturecard.
Previously, the Program Guide showed all channels in the database,
including channels that could never have been recorded because
they are from videosources not connected to a capturecard.
  • Loading branch information
kmdewaal committed Jul 14, 2019
1 parent c4a1d53 commit e35e97e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/channelutil.cpp
Expand Up @@ -2393,7 +2393,7 @@ ChannelInfoList ChannelUtil::LoadChannels(uint startIndex, uint count,
"MIN(livetvorder) livetvorder "
"FROM channel "
"LEFT JOIN channelgroup ON channel.chanid = channelgroup.chanid "
"LEFT JOIN capturecard ON capturecard.sourceid = channel.sourceid ";
"INNER JOIN capturecard ON capturecard.sourceid = channel.sourceid ";

QStringList cond;
if (ignoreHidden)
Expand Down

0 comments on commit e35e97e

Please sign in to comment.