mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +02:00
zapit/channel: fix issue tag from b86d72f2d4
Origin commit data ------------------ Commit:cda63a9242
Author: vanhofen <vanhofen@gmx.de> Date: 2017-12-11 (Mon, 11 Dec 2017) Origin message was: ------------------ - zapit/channel: fix issue tag fromb86d72f2d4
This commit is contained in:
@@ -211,14 +211,9 @@ bool CZapitChannel::isUHD()
|
||||
case ST_DIGITAL_TELEVISION_SERVICE:
|
||||
case 0x19:
|
||||
{
|
||||
std::string uhd = "UHD";
|
||||
if(strstr(name.c_str(),uhd.c_str()))
|
||||
if (strstr(name.c_str(), "UHD"))
|
||||
return true;
|
||||
uhd = "4K";
|
||||
if(strstr(name.c_str(),uhd.c_str()))
|
||||
return true;
|
||||
uhd = "4k";
|
||||
if(strstr(name.c_str(),uhd.c_str())) //FIXME: this statement may fall through
|
||||
if (strstr(name.c_str(), "4k"))
|
||||
return true;
|
||||
}
|
||||
default:
|
||||
|
Reference in New Issue
Block a user