summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2015-05-22 13:56:52 +0200
committerlouis <louis.braun@gmx.de>2015-05-22 13:56:52 +0200
commitb4c82f50668e49df2077745f2e1d6981c840db51 (patch)
tree61c809f9fcffaed364ba7a36d465a89980e405e2
parentf9278c805a8d9ff911673b6e635b80e3374db63d (diff)
downloadvdr-plugin-skindesigner-b4c82f50668e49df2077745f2e1d6981c840db51.tar.gz
vdr-plugin-skindesigner-b4c82f50668e49df2077745f2e1d6981c840db51.tar.bz2
fixed ecm time display
-rw-r--r--HISTORY3
-rw-r--r--views/viewhelpers.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index 81fb3a7..a3e70e8 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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;