src/zapit/src/channel: fix warning: this statement may fall through [-Wimplicit-fallthrough=]

Origin commit data
------------------
Branch: ni/coolstream
Commit: abf7116ab2
Author: max_10 <max_10@gmx.de>
Date: 2018-09-19 (Wed, 19 Sep 2018)

Origin message was:
------------------
-src/zapit/src/channel: fix warning: this statement may fall through [-Wimplicit-fallthrough=]

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
max_10
2018-09-19 19:33:36 +02:00
committed by vanhofen
parent 7cf0f165fb
commit b374a75bb0

View File

@@ -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;