diff options
author | louis <louis.braun@gmx.de> | 2015-05-22 13:56:52 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-05-22 13:56:52 +0200 |
commit | b4c82f50668e49df2077745f2e1d6981c840db51 (patch) | |
tree | 61c809f9fcffaed364ba7a36d465a89980e405e2 | |
parent | f9278c805a8d9ff911673b6e635b80e3374db63d (diff) | |
download | vdr-plugin-skindesigner-b4c82f50668e49df2077745f2e1d6981c840db51.tar.gz vdr-plugin-skindesigner-b4c82f50668e49df2077745f2e1d6981c840db51.tar.bz2 |
fixed ecm time display
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | views/viewhelpers.c | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -334,4 +334,5 @@ Version 0.4.6 - added timeshift support in displayreplay Version 0.4.7 - +- fixed crash when deleting menuitem +- fixed ecm time display diff --git a/views/viewhelpers.c b/views/viewhelpers.c index cc72c9b..fae89c7 100644 --- a/views/viewhelpers.c +++ b/views/viewhelpers.c @@ -938,7 +938,7 @@ bool cViewHelpers::SetEcmInfos(int channelSid, stringmap &stringTokens, intmap & return false; } - if (ecmInfo.hops < 0 || ecmInfo.ecmtime <= 0) + if (ecmInfo.hops < 0 || ecmInfo.ecmtime <= 0 || ecmInfo.ecmtime > 100000) return false; if (CompareECMInfos(&ecmInfo)) return false; |