- neutrino: change defaults for epg_read settings

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-09-02 20:51:30 +02:00
committed by Thilo Graf
parent dd7507fe37
commit 1adef856ad

View File

@@ -743,8 +743,8 @@ int CNeutrinoApp::loadSetup(const char *fname)
g_settings.epg_extendedcache = configfile.getInt32("epg_extendedcache_time", 168);
g_settings.epg_max_events = configfile.getInt32("epg_max_events", 30000);
g_settings.epg_old_events = configfile.getInt32("epg_old_events", 1);
g_settings.epg_read = configfile.getBool("epg_read", g_settings.epg_save);
g_settings.epg_read_frequently = configfile.getInt32("epg_read_frequently", 0);
g_settings.epg_read = configfile.getBool("epg_read", true);
g_settings.epg_read_frequently = configfile.getInt32("epg_read_frequently", 1);
g_settings.epg_save = configfile.getBool("epg_save", false);
g_settings.epg_save_frequently = configfile.getInt32("epg_save_frequently", 0);
g_settings.epg_save_mode = configfile.getInt32("epg_save_mode", 0);