diff --git a/src/zapit/src/channel.cpp b/src/zapit/src/channel.cpp index 44af7deb3..4cc5f4198 100644 --- a/src/zapit/src/channel.cpp +++ b/src/zapit/src/channel.cpp @@ -216,10 +216,10 @@ bool CZapitChannel::isUHD() case ST_DIGITAL_TELEVISION_SERVICE: case 0x19: { - if (strstr(name.c_str(), "UHD")) - return true; - if (strstr(name.c_str(), "4k")) + if (strstr(name.c_str(), "UHD") || (strstr(name.c_str(), "4k"))) return true; + else + return false; } default: return false;