mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 01:11:06 +02:00
eitd: -fix wakeup epg scan with max_events==0
Origin commit data
------------------
Commit: 6321bd1810
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2013-10-02 (Wed, 02 Oct 2013)
This commit is contained in:
@@ -903,7 +903,7 @@ static void commandserviceChanged(int connfd, char *data, const unsigned dataLen
|
||||
/* assume live demux always 0, other means background scan */
|
||||
if (cmd->dnum) {
|
||||
/* dont wakeup EIT, if we have max events allready */
|
||||
if (max_events && (mySIeventsOrderUniqueKey.size() < max_events)) {
|
||||
if (max_events == 0 || (mySIeventsOrderUniqueKey.size() < max_events)) {
|
||||
threadEIT.setDemux(cmd->dnum);
|
||||
threadEIT.setCurrentService(uniqueServiceKey);
|
||||
}
|
||||
|
Reference in New Issue
Block a user