mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 00:41:09 +02:00
webtv: simplify check for autoload directory
Origin commit data
------------------
Branch: ni/coolstream
Commit: 89d203edd5
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-09-15 (Sat, 15 Sep 2018)
Origin message was:
------------------
- webtv: simplify check for autoload directory
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1578,16 +1578,13 @@ void CNeutrinoApp::saveSetup(const char * fname)
|
||||
|
||||
configfile.setString ( "logo_hdd_dir", g_settings.logo_hdd_dir );
|
||||
|
||||
CWebTVSetup webtvsetup;
|
||||
configfile.setInt32("webtv_xml_auto", g_settings.webtv_xml_auto); //NI
|
||||
int webtv_count = 0;
|
||||
for (std::list<std::string>::iterator it = g_settings.webtv_xml.begin(); it != g_settings.webtv_xml.end(); ++it) {
|
||||
std::string k = "webtv_xml_" + to_string(webtv_count);
|
||||
//NI
|
||||
if (
|
||||
(*it).empty()
|
||||
|| ((*it).find(WEBTVDIR) != std::string::npos)
|
||||
|| ((*it).find(WEBTVDIR_VAR) != std::string::npos)
|
||||
)
|
||||
if (webtvsetup.webtv_xml_autodir((*it)))
|
||||
continue;
|
||||
configfile.setString(k, *it);
|
||||
webtv_count++;
|
||||
|
Reference in New Issue
Block a user