From 2642b190b0ed9bab40c72279410fc54b15884ace Mon Sep 17 00:00:00 2001 From: df Date: Thu, 18 Feb 2021 13:06:49 +0000 Subject: [PATCH] Fix typo and < vs <= in `dbfetch -trange` option: avoids missing channels in EPG. --- webif/lib/epg.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webif/lib/epg.class b/webif/lib/epg.class index 5c9420f..a32f40e 100644 --- a/webif/lib/epg.class +++ b/webif/lib/epg.class @@ -482,7 +482,7 @@ proc {epg dbfetch} {mode args} { append q "and (e.start is null or (e.start > $stt and e.start < $ett) or (e.end > $stt and e.end < $ett) or - (e.start < $stt and e.end > $stt) + (e.start <= $stt and e.end >= $ett) ) " } -fav {