Opened 19 years ago

Closed 18 years ago

#103 closed defect (duplicate)

Find daily/weekly rules do not set find* fiields when created in MythWeb

Reported by: bjm Owned by: xris
Priority: minor Milestone: unknown
Component: mythweb Version:
Severity: medium Keywords:
Cc: gigem Ticket locked: no

Description

kFindDaily and kFindWeekly rules rely on the 'findtime'and 'findday' fields in the 'mythconverg.record' table. However, these are set to empty defaults when one of these rules are created from MythWeb.

To reproduce, from MythWeb chose a show that appears on several different days of the week and select a showing on any day other than Monday. I chose "Charlie Rose" on Wed. Choose "Find and record one showing of this title each week."

The result should be to record this Wed (today in my test) and next Wed. The result was that it selected Friday, next Monday and the following Monday. This is becase the find* fields are empty:

mysql> select findtime,findday from record where title='Charlie Rose';
+----------+---------+
| findtime | findday |
+----------+---------+
| 00:00:00 |       0 |
+----------+---------+
1 row in set (0.01 sec)

If I create a similar rule for another show from within mythfrontend:

mysql> select findtime,findday from record where title='Zoom';
+----------+---------+
| findtime | findday |
+----------+---------+
| 15:30:00 |       4 |
+----------+---------+
1 row in set (0.01 sec)

This schedules the correct showings for this Wed and next Wed.

Change History (2)

comment:1 Changed 18 years ago by sphery <mtdean@…>

Is this the same as #465? If so, #465 was closed/fixed by [7482] (which, coincidentally, was committed by bjm--it's easy to forget about an issue from 4 months/362 tickets before ;).

comment:2 Changed 18 years ago by anonymous

Resolution: duplicate
Status: newclosed

Resolved by #465

Note: See TracTickets for help on using tickets.