From 238ea8ccbdc738cd6e20d2079b74866a762ab453 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Thu, 20 Nov 2014 14:40:19 +0300 Subject: [PATCH] neutrino.cpp: fix webtv_usr.xml check for adding by default --- src/neutrino.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 8011608fc..0fcf9c9bb 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -641,7 +641,7 @@ int CNeutrinoApp::loadSetup(const char * fname) } } else { std::string webtv_xml = configfile.getString("webtv_xml", WEBTV_XML); - if (!file_size(webtv_xml.c_str())) + if (file_size(webtv_xml.c_str())) g_settings.webtv_xml.push_back(webtv_xml); }