From 7ee2df2c340ac1a67be8c96719b1fcd3da31c307 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Fri, 10 Aug 2018 23:07:55 +0200 Subject: [PATCH] - neutrino: new defaults for epg scan; scan all favs in standby mode Signed-off-by: Thilo Graf --- src/neutrino.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index d79f45ced..28db929e3 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -573,8 +573,8 @@ int CNeutrinoApp::loadSetup(const char * fname) g_settings.epg_save_frequently = configfile.getInt32("epg_save_frequently", 0); 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_scan = configfile.getInt32("epg_scan", CEpgScan::SCAN_CURRENT); - g_settings.epg_scan_mode = configfile.getInt32("epg_scan_mode", CEpgScan::MODE_OFF); + g_settings.epg_scan = configfile.getInt32("epg_scan", CEpgScan::SCAN_FAV); + g_settings.epg_scan_mode = configfile.getInt32("epg_scan_mode", CEpgScan::MODE_STANDBY); // backward-compatible check if (g_settings.epg_scan == 0) { g_settings.epg_scan = CEpgScan::SCAN_CURRENT;