fix compiler warnings

Origin commit data
------------------
Commit: 9c62e80325
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2020-01-09 (Thu, 09 Jan 2020)
This commit is contained in:
Jacek Jendrzej
2020-01-09 21:37:16 +01:00
committed by vanhofen
parent 5a86103e52
commit bf0937d53c

View File

@@ -554,14 +554,17 @@ bool CPictureViewer::GetLogoName(const uint64_t &ChannelID, const std::string &C
CSectionsdClient::CurrentNextInfo CurrentNext;
CEitManager::getInstance()->getCurrentNextServiceKey(ChannelID, CurrentNext);
if (CSectionsdClient::epgflags::has_current && !CurrentNext.current_name.empty())
if (CurrentNext.flags & CSectionsdClient::epgflags::has_current && !CurrentNext.current_name.empty())
EventName = CurrentNext.current_name;
}
// add neccessary paths to v_path
v_path.clear();
if (lcd4l_mode)
if (lcd4l_mode){
#ifdef ENABLE_LCD4LINUX
v_path.push_back(g_settings.lcd4l_logodir);
#endif
}
v_path.push_back(g_settings.logo_hdd_dir);
if (g_settings.logo_hdd_dir != LOGODIR_VAR)
v_path.push_back(LOGODIR_VAR);