diff options
Diffstat (limited to 'conflictcheck_thread.c')
-rw-r--r-- | conflictcheck_thread.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conflictcheck_thread.c b/conflictcheck_thread.c index e9bce14..da1aaf0 100644 --- a/conflictcheck_thread.c +++ b/conflictcheck_thread.c @@ -92,6 +92,9 @@ void cConflictCheckThread::Action(void) LogFile.Log(2, "ConflictCheckThread: waiting for VDR to become ready..."); while (m_Active && !cPluginEpgsearch::VDR_readyafterStartup) Wait.Wait(1000); + if (EPGSearchConfig.delayThreads > 0) + LogFile.Log(2, "ConflictCheckThread: startup delayed %d seconds", EPGSearchConfig.delayThreads); + cCondWait::SleepMs(EPGSearchConfig.delayThreads * 1000); } time_t nextUpdate = time(NULL); |