Opened 12 years ago
Closed 12 years ago
#11619 closed Patch - Bug Fix (Fixed)
MythDB.seachRecorded: wrong join recorded->recordedprogram
| Reported by: | Owned by: | Raymond Wagner | |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.26.1 |
| Component: | Bindings - Python | Version: | |
| Severity: | medium | Keywords: | |
| Cc: | Ticket locked: | no |
Description
recordedprogram.starttime must join to recorded.progstart
diff --git a/mythtv/bindings/python/MythTV/methodheap.py b/mythtv/bindings/python/MythTV/methodheap.py
index 328424c..d598b2f 100644
--- a/mythtv/bindings/python/MythTV/methodheap.py
+++ b/mythtv/bindings/python/MythTV/methodheap.py
@@ -652,7 +652,8 @@
init.require = ('livetv',)
init.joins = (init.Join(table='recordedprogram',
tableto='recorded',
- fields=('chanid','starttime')),
+ fieldsfrom=('chanid','starttime'),
+ fieldsto=('chanid','progstart')),
init.Join(table='recordedcredits',
tableto='recorded',
fieldsfrom=('chanid','starttime'),
Attachments (1)
Change History (3)
by , 12 years ago
| Attachment: | methodheap.patch added |
|---|
comment:1 by , 12 years ago
| Owner: | set to |
|---|---|
| Status: | new → accepted |
comment:2 by , 12 years ago
| Milestone: | unknown → 0.26.1 |
|---|---|
| Resolution: | → Fixed |
| Status: | accepted → closed |
Note:
See TracTickets
for help on using tickets.

Fixed by 3a082c506f4bacc950 and 99eb39adb5ff15ea6b3d