diff options
author | Johann Friedrichs <johann.friedrichs@web.de> | 2017-07-11 08:35:04 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-07-11 08:35:04 +0200 |
commit | 04124ba1ebae36f15eafe95cd23bbb8e220a8e8a (patch) | |
tree | 2cfe1873c29382ed79feaf49eb81a3897ae12860 /epgsearch.c | |
parent | ceb158e1bd9df3cc0c6f9243856faac6f735ffb8 (diff) | |
download | vdr-plugin-epgsearch-04124ba1ebae36f15eafe95cd23bbb8e220a8e8a.tar.gz vdr-plugin-epgsearch-04124ba1ebae36f15eafe95cd23bbb8e220a8e8a.tar.bz2 |
Add conflict check for remote timers.
Diffstat (limited to 'epgsearch.c')
-rw-r--r-- | epgsearch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/epgsearch.c b/epgsearch.c index 7f368c3..3bcd3d9 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -652,6 +652,7 @@ bool cPluginEpgsearch::SetupParse(const char *Name, const char *Value) if (!strcasecmp(Name, "CheckTimerConflicts")) EPGSearchConfig.checkTimerConflictsAfterUpdate = atoi(Value); if (!strcasecmp(Name, "CheckTimerConflictsPriority")) EPGSearchConfig.checkMinPriority = atoi(Value); if (!strcasecmp(Name, "CheckTimerConflictsDays")) EPGSearchConfig.checkMaxDays = atoi(Value); + if (!strcasecmp(Name, "RemoteConflictCheck")) EPGSearchConfig.RemoteConflictCheck = atoi(Value); if (!strcasecmp(Name, "CheckConflictsIntervall")) EPGSearchConfig.conflictCheckIntervall = atoi(Value); if (!strcasecmp(Name, "CheckConflictsWithinLimit")) EPGSearchConfig.conflictCheckWithinLimit = atoi(Value); if (!strcasecmp(Name, "CheckConflictsIntervall2")) EPGSearchConfig.conflictCheckIntervall2 = atoi(Value); |