Opened 20 years ago
Closed 20 years ago
#160 closed defect (fixed)
OSD does not update data when channel changed via browse
| Reported by: | Owned by: | Isaac Richards | |
|---|---|---|---|
| Priority: | minor | Milestone: | unknown |
| Component: | mythtv | Version: | head |
| Severity: | medium | Keywords: | |
| Cc: | Ticket locked: | no |
Description
When browsing channels while playing live tv, the OSD does not display new or existing program information.
Suggested fix:
--- programinfo.cpp (revision 6929)
+++ programinfo.cpp (working copy)
@@ -621,8 +621,8 @@
ProgramList progList;
QString querystr = QString(
- "WHERE program.chanid = '%1' AND starttime < '%2' AND "
- " endtime > '%3'")
+ "WHERE program.chanid = '%1' AND program.starttime < '%2' AND "
+ " program.endtime > '%3'")
.arg(channel)
.arg(dtime.toString("yyyyMMddhhmm50"))
.arg(dtime.toString("yyyyMMddhhmm50"));
Note:
See TracTickets
for help on using tickets.

(In [6930]) Patch from goldwein at xrtmd dot net to fix a problem introduced by me in ProgramInfo::GetProgramAtDateTime. Thanks for the patch. I had seen the problem myself, but hadn't had time to look into it.
Fixes #160.