mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 08:21:07 +02:00
CNeutrinoEventList::paintDescription - show info1 if info2 is empty
Origin commit data
------------------
Commit: f23be72ee0
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2013-05-13 (Mon, 13 May 2013)
This commit is contained in:
@@ -829,8 +829,12 @@ void CNeutrinoEventList::paintDescription(int index)
|
||||
else
|
||||
CEitManager::getInstance()->getActualEPGServiceKey(evtlist[index].channelID, &epgData );
|
||||
|
||||
if(!epgData.info2.empty())
|
||||
if(!epgData.info2.empty()){
|
||||
infozone_text = epgData.info2;
|
||||
}
|
||||
else if (!epgData.info1.empty()){
|
||||
infozone_text = epgData.info1;
|
||||
}
|
||||
else
|
||||
infozone_text = g_Locale->getText(LOCALE_EPGLIST_NOEVENTS);
|
||||
|
||||
|
Reference in New Issue
Block a user