diff options
Diffstat (limited to 'webstore.c')
-rw-r--r-- | webstore.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -369,7 +369,7 @@ int cEpgHttpd::storeTimerJob(json_t* jInData, json_t* response) //*************************************************************************** // Modify Timer (copy paste from cMenuDb of epg2vdr) // -// - timerRow contains the destination vdrUuid +// - timerRow contains the new/modified values //*************************************************************************** int cEpgHttpd::modifyCreateTimer(cDbRow* timerRow) @@ -405,6 +405,11 @@ int cEpgHttpd::modifyCreateTimer(cDbRow* timerRow) if (!timerDb->hasValue("VDRUUID", timerRow->getStrValue("VDRUUID"))) move = yes; + + // move to another timer type? + + if (!timerDb->hasValue("TYPE", timerRow->getStrValue("TYPE"))) + move = yes; } else { |