diff options
Diffstat (limited to 'epgsearch.c')
-rw-r--r-- | epgsearch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/epgsearch.c b/epgsearch.c index e80dfd6..cb3cf45 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -668,6 +668,9 @@ bool cPluginEpgsearch::SetupParse(const char *Name, const char *Value) if (!strcasecmp(Name, "DefLifetime")) EPGSearchConfig.DefLifetime = atoi(Value); if (!strcasecmp(Name, "DefMarginStart")) EPGSearchConfig.DefMarginStart = atoi(Value); if (!strcasecmp(Name, "DefMarginStop")) EPGSearchConfig.DefMarginStop = atoi(Value); +#if defined(APIVERSNUM) && APIVERSNUM > 20503 + if (!strcasecmp(Name, "AllowedErrors")) EPGSearchConfig.AllowedErrors = atoi(Value); +#endif if (!strcasecmp(Name, "IgnorePayTV")) EPGSearchConfig.ignorePayTV = atoi(Value); |