mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-01 09:51:22 +02:00
- zapit/channel: fix issue tag from 4bacd77f8b
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -211,14 +211,9 @@ bool CZapitChannel::isUHD()
|
|||||||
case ST_DIGITAL_TELEVISION_SERVICE:
|
case ST_DIGITAL_TELEVISION_SERVICE:
|
||||||
case 0x19:
|
case 0x19:
|
||||||
{
|
{
|
||||||
std::string uhd = "UHD";
|
if (strstr(name.c_str(), "UHD"))
|
||||||
if(strstr(name.c_str(),uhd.c_str()))
|
|
||||||
return true;
|
return true;
|
||||||
uhd = "4K";
|
if (strstr(name.c_str(), "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
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user