Merge branch 'master' into pu/fb-setmode

This commit is contained in:
M. Liebmann
2017-03-05 13:53:34 +01:00
3 changed files with 7 additions and 11 deletions

View File

@@ -49,7 +49,6 @@
#include <nhttpd/yconfig.h>
#define VERSION_FILE TARGET_PREFIX "/.version"
#define Y_VERSION_FILE DATADIR "/neutrino/httpd/Y_Version.txt"
using namespace std;
@@ -310,7 +309,7 @@ void CImageInfo::InitInfoData()
s_api += ", ";
#endif
s_api += "yWeb ";
s_api += getYApi();
s_api += getYWebVersion();
s_api += ", ";
s_api += HTTPD_NAME;
s_api += + " ";
@@ -462,12 +461,9 @@ void CImageInfo::hide()
}
}
string CImageInfo::getYApi()
string CImageInfo::getYWebVersion()
{
string ret;
config.loadConfig(Y_VERSION_FILE);
ret = config.getString("version", "n/a");
config.loadConfig(VERSION_FILE);
return ret;
CConfigFile yV('=', false);
yV.loadConfig(PRIVATE_HTTPDDIR "/Y_Version.txt");
return yV.getString("version", "n/a");
}

View File

@@ -63,7 +63,7 @@ class CImageInfo : public CMenuTarget
std::string getLicenseText();
void ShowWindow();
void ScrollLic(bool scrollDown);
std::string getYApi();
std::string getYWebVersion();
CComponentsWindowMax *cc_win;
CComponentsForm *cc_info;

View File

@@ -516,7 +516,7 @@ bool CZapit::ZapIt(const t_channel_id channel_id, bool forupdate, bool startplay
if (IS_WEBTV(newchannel->getChannelID()) && !newchannel->getUrl().empty()) {
dvbsub_stop();
if (current_channel->getChannelID() == newchannel->getChannelID() && !newchannel->getScriptName().empty()){
if (current_channel && current_channel->getChannelID() == newchannel->getChannelID() && !newchannel->getScriptName().empty()){
INFO("[zapit] stop rezap to channel %s id %" PRIx64 ")", newchannel->getName().c_str(), newchannel->getChannelID());
return true;
}