diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-02-09 14:54:10 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-02-09 15:57:13 +0100 |
commit | cba8fe1eb454711fdda13d6815629c99bc4c238a (patch) | |
tree | 995348dedc56e9053c15686f311258d4562b0fac | |
parent | b9093a6dca819b40d96024321a8ebd25bfd6232d (diff) | |
download | vdr-plugin-skindesigner-cba8fe1eb454711fdda13d6815629c99bc4c238a.tar.gz vdr-plugin-skindesigner-cba8fe1eb454711fdda13d6815629c99bc4c238a.tar.bz2 |
Missing token eCeMenuSchedulesIT::durationminutes added
-rw-r--r-- | coreengine/listelements.c | 1 |
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; |