lcd4l: try to fix display of webtv-channels on external lcd

Origin commit data
------------------
Branch: ni/coolstream
Commit: a79dbe6557
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-03-22 (Wed, 22 Mar 2017)

Origin message was:
------------------
- lcd4l: try to fix display of webtv-channels on external lcd

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2017-03-22 14:30:34 +01:00
parent 84dacb4ba1
commit b6e0d61d7a

View File

@@ -917,7 +917,11 @@ uint64_t CLCD4l::GetParseID()
if (m_ModeChannel > 1)
ID = g_RemoteControl->subChannels[g_RemoteControl->selected_subchannel].getChannelID();
else
ID = CZapit::getInstance()->GetCurrentChannelID();
{
CZapitChannel * channel = CZapit::getInstance()->GetCurrentChannel();
if (channel)
ID = channel->getEpgID();
}
}
//printf("[CLCD4l] %s: %llx\n", __FUNCTION__, ID);
return ID;