summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2021-02-09 14:54:10 +0100
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2021-02-09 15:57:13 +0100
commitcba8fe1eb454711fdda13d6815629c99bc4c238a (patch)
tree995348dedc56e9053c15686f311258d4562b0fac
parentb9093a6dca819b40d96024321a8ebd25bfd6232d (diff)
downloadvdr-plugin-skindesigner-cba8fe1eb454711fdda13d6815629c99bc4c238a.tar.gz
vdr-plugin-skindesigner-cba8fe1eb454711fdda13d6815629c99bc4c238a.tar.bz2
Missing token eCeMenuSchedulesIT::durationminutes added
-rw-r--r--coreengine/listelements.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/coreengine/listelements.c b/coreengine/listelements.c
index 96daba3..decca1e 100644
--- a/coreengine/listelements.c
+++ b/coreengine/listelements.c
@@ -968,6 +968,7 @@ bool cCeMenuSchedules::Parse(bool forced) {
}
tokenContainer->AddIntToken((int)eCeMenuSchedulesIT::duration, event->Duration() / 60);
tokenContainer->AddIntToken((int)eCeMenuSchedulesIT::durationhours, event->Duration() / 3600);
+ tokenContainer->AddIntToken((int)eCeMenuSchedulesIT::durationminutes, (event->Duration() / 60) % 60);
if (timerMatch == tmFull || timerMatch == tmPartial) {
cTimer_Detail_V1 data;