Skip to content

Commit

Permalink
Merge pull request #16033 from djp952/fixepgwhennewchannels
Browse files Browse the repository at this point in the history
[PVR] Newly added channels cause EPG UI corruption
  • Loading branch information
ksooo committed May 2, 2019
2 parents f286b8d + e4d9d0e commit d57182c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/pvr/channels/PVRChannelGroup.cpp
Expand Up @@ -926,7 +926,7 @@ std::vector<std::shared_ptr<CPVREpgInfoTag>> CPVRChannelGroup::GetEPGAll(bool bI
channel = (*it).channel; channel = (*it).channel;
if (!channel->IsHidden()) if (!channel->IsHidden())
{ {
bool bEmpty = false; bool bEmpty = true;


CPVREpgPtr epg = channel->GetEPG(); CPVREpgPtr epg = channel->GetEPG();
if (epg) if (epg)
Expand Down

0 comments on commit d57182c

Please sign in to comment.