mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
- streaminfo2: add real channelname if it differs to channelname
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -865,6 +865,12 @@ void CStreamInfo2::paint_techinfo(int xpos, int ypos)
|
||||
r.key = g_Locale->getText(LOCALE_TIMERLIST_CHANNEL);
|
||||
r.key += ": ";
|
||||
r.val = channel->getName().c_str();
|
||||
if (channel->getName() != channel->getRealname())
|
||||
{
|
||||
r.val += " << ";
|
||||
r.val += channel->getRealname().c_str();
|
||||
}
|
||||
|
||||
v.push_back(r);
|
||||
|
||||
// url
|
||||
|
Reference in New Issue
Block a user