fixed ecm time display

This commit is contained in:
louis 2015-05-22 13:56:52 +02:00
parent f9278c805a
commit b4c82f5066
2 changed files with 3 additions and 2 deletions

View File

@ -334,4 +334,5 @@ Version 0.4.6
- added timeshift support in displayreplay - added timeshift support in displayreplay
Version 0.4.7 Version 0.4.7
- fixed crash when deleting menuitem
- fixed ecm time display

View File

@ -938,7 +938,7 @@ bool cViewHelpers::SetEcmInfos(int channelSid, stringmap &stringTokens, intmap &
return false; return false;
} }
if (ecmInfo.hops < 0 || ecmInfo.ecmtime <= 0) if (ecmInfo.hops < 0 || ecmInfo.ecmtime <= 0 || ecmInfo.ecmtime > 100000)
return false; return false;
if (CompareECMInfos(&ecmInfo)) if (CompareECMInfos(&ecmInfo))
return false; return false;