diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2019-02-07 21:26:09 +0100 |
---|---|---|
committer | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2019-02-07 21:26:09 +0100 |
commit | ec39442e5379d6f43dc9266913bcf2292d83599e (patch) | |
tree | 79045233ac6f32340c6cb4054cd84026e4f576cb | |
parent | 33518fcb32b874c9f204fd12c8c4dacef08525b9 (diff) |
[pvr] Define a senseful default value for advanced settings 'updateemptytagsinterval'.
-rw-r--r-- | xbmc/settings/AdvancedSettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/settings/AdvancedSettings.cpp b/xbmc/settings/AdvancedSettings.cpp index f3931613ed..1fe683266f 100644 --- a/xbmc/settings/AdvancedSettings.cpp +++ b/xbmc/settings/AdvancedSettings.cpp @@ -328,7 +328,7 @@ void CAdvancedSettings::Initialize() m_iEpgCleanupInterval = 900; /* remove old entries from the EPG every 15 minutes */ m_iEpgActiveTagCheckInterval = 60; /* check for updated active tags every minute */ m_iEpgRetryInterruptedUpdateInterval = 30; /* retry an interrupted epg update after 30 seconds */ - m_iEpgUpdateEmptyTagsInterval = 60; /* override user selectable EPG update interval for empty EPG tags */ + m_iEpgUpdateEmptyTagsInterval = 7200; /* override user selectable EPG update interval for empty EPG tags */ m_bEpgDisplayUpdatePopup = true; /* display a progress popup while updating EPG data from clients */ m_bEpgDisplayIncrementalUpdatePopup = false; /* also display a progress popup while doing incremental EPG updates */ |