mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 01:11:06 +02:00
neutrino: show saveEpg-message in shutdown mode too
Origin commit data
------------------
Commit: af99cf6ece
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-03-27 (Wed, 27 Mar 2019)
Origin message was:
------------------
- neutrino: show saveEpg-message in shutdown mode too
This commit is contained in:
@@ -4406,7 +4406,7 @@ void CNeutrinoApp::saveEpg(int _mode)
|
||||
{
|
||||
if (_mode == NeutrinoModes::mode_standby)
|
||||
{
|
||||
// skip save epg in standby mode, if last saveepg time < 15 Min.
|
||||
// skip save epg in standby mode, if last saveepg time < 15 minutes
|
||||
std::string index_xml = g_settings.epg_dir.c_str();
|
||||
index_xml += "/index.xml";
|
||||
time_t t=0;
|
||||
@@ -4415,11 +4415,12 @@ void CNeutrinoApp::saveEpg(int _mode)
|
||||
if (difftime(time(&t), my_stat.st_ctime) < 900)
|
||||
return;
|
||||
}
|
||||
CVFD::getInstance()->Clear();
|
||||
//NI CVFD::getInstance()->setMode(CVFD::MODE_TVRADIO);
|
||||
CVFD::getInstance()->ShowText(g_Locale->getText(LOCALE_EPG_SAVING));
|
||||
}
|
||||
|
||||
CVFD::getInstance()->Clear();
|
||||
//NI CVFD::getInstance()->setMode(CVFD::MODE_TVRADIO);
|
||||
CVFD::getInstance()->ShowText(g_Locale->getText(LOCALE_EPG_SAVING));
|
||||
|
||||
printf("[neutrino] Saving EPG to %s...\n", g_settings.epg_dir.c_str());
|
||||
g_Sectionsd->writeSI2XML(g_settings.epg_dir.c_str());
|
||||
|
||||
|
@@ -169,7 +169,7 @@ bool CFlashTool::program( const std::string & filename, int globalProgressEndEra
|
||||
int globalProgressBegin = 0;
|
||||
|
||||
if(g_settings.epg_save)
|
||||
CNeutrinoApp::getInstance()->saveEpg(true);
|
||||
CNeutrinoApp::getInstance()->saveEpg(NeutrinoModes::mode_off);
|
||||
|
||||
if(statusViewer)
|
||||
statusViewer->showLocalStatus(0);
|
||||
|
Reference in New Issue
Block a user