From 6b5a01a01fd7d68cb8bdd0b4f4e9fe7ecd18eab8 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Fri, 10 Aug 2018 23:07:55 +0200 Subject: [PATCH] neutrino: new defaults for epg scan; scan all favs in standby mode Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/6a996e6fe2d117b3c826c39f0add052bdcbba415 Author: vanhofen Date: 2018-08-10 (Fri, 10 Aug 2018) Origin message was: ------------------ - neutrino: new defaults for epg scan; scan all favs in standby mode --- src/neutrino.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 3676290f3..76a19afc2 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -627,8 +627,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;