Skip to content

Commit

Permalink
ADDED: Don't update EPG for hidden channels. Credit goes to dodoadoodoo.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsp committed Jun 21, 2012
1 parent d2d9454 commit 36d9deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/pvr/channels/PVRChannel.cpp
Expand Up @@ -103,7 +103,7 @@ CPVRChannel::CPVRChannel(const PVR_CHANNEL &channel, unsigned int iClientId)
m_strFileNameAndPath = StringUtils::EmptyString;
m_bIsVirtual = false;
m_iLastWatched = 0;
m_bEPGEnabled = true;
m_bEPGEnabled = !channel.bIsHidden;
m_strEPGScraper = "client";
m_iEpgId = -1;
m_bEPGCreated = false;
Expand Down

0 comments on commit 36d9deb

Please sign in to comment.