diff options
author | horchi <vdr@jwendel.de> | 2019-12-15 10:52:29 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2019-12-15 10:52:29 +0100 |
commit | 66b3157bbed7e503339071aee8e3256f5e8e1cd4 (patch) | |
tree | 058998ed70183b0f6d534ad9e369a5c7a3e9b76d /ttools.c | |
parent | b63251e00b1123798a9cfa41f381e0f39b72a11b (diff) | |
download | vdr-plugin-epg2vdr-1.1.104.tar.gz vdr-plugin-epg2vdr-1.1.104.tar.bz2 |
2019-12-15: version 1.1.104 (horchi)\n - added: Added _endtime to table timers\n\n1.1.104
Diffstat (limited to 'ttools.c')
-rw-r--r-- | ttools.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -332,6 +332,7 @@ int updateRowByTimer(cDbRow* timerRow, const cTimer* t) timerRow->setValue("VDRUUID", Epg2VdrConfig.uuid); timerRow->setValue("EVENTID", t->Event() ? (long)t->Event()->EventID() : 0); timerRow->setValue("_STARTTIME", t->Event() ? t->Event()->StartTime() : 0); + timerRow->setValue("_ENDTIME", t->Event() ? t->StopTime() : 0); timerRow->setValue("CHANNELID", channelId); timerRow->setValue("DAY", t->Day()); timerRow->setValue("STARTTIME", t->Start()); |