mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +02:00
neutrino: do not display expired events in channel list
Origin commit data
------------------
Branch: ni/coolstream
Commit: 6bc2a8a5d8
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-01-22 (Sun, 22 Jan 2012)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
committed by
[CST] Focus
parent
d7287af35d
commit
800d10bfd5
@@ -2,7 +2,7 @@
|
|||||||
Neutrino-GUI - DBoxII-Project
|
Neutrino-GUI - DBoxII-Project
|
||||||
|
|
||||||
Copyright (C) 2001 Steffen Hehn 'McClean'
|
Copyright (C) 2001 Steffen Hehn 'McClean'
|
||||||
Homepage: http://dbox.cyberphoria.org/
|
Copyright (C) 2007-2012 Stefan Seyfried
|
||||||
|
|
||||||
Kommentar:
|
Kommentar:
|
||||||
|
|
||||||
@@ -205,7 +205,7 @@ void CChannelList::updateEvents(unsigned int from, unsigned int to)
|
|||||||
CChannelEventList levents;
|
CChannelEventList levents;
|
||||||
CEitManager::getInstance()->getChannelEvents(levents, p_requested_channels, chanlist_size);
|
CEitManager::getInstance()->getChannelEvents(levents, p_requested_channels, chanlist_size);
|
||||||
for (uint32_t count=0; count < chanlist_size; count++) {
|
for (uint32_t count=0; count < chanlist_size; count++) {
|
||||||
chanlist[count]->currentEvent = CChannelEvent();
|
chanlist[count + from]->currentEvent = CChannelEvent();
|
||||||
for (CChannelEventList::iterator e = levents.begin(); e != levents.end(); ++e) {
|
for (CChannelEventList::iterator e = levents.begin(); e != levents.end(); ++e) {
|
||||||
if ((chanlist[count + from]->channel_id&0xFFFFFFFFFFFFULL) == e->get_channel_id()) {
|
if ((chanlist[count + from]->channel_id&0xFFFFFFFFFFFFULL) == e->get_channel_id()) {
|
||||||
chanlist[count + from]->currentEvent = *e;
|
chanlist[count + from]->currentEvent = *e;
|
||||||
|
Reference in New Issue
Block a user