2017-06-29, 10:57 PM
(This post was last modified: 2017-07-29, 06:18 PM by mvallevand.)
I feel the PostUpdateEPG process should run right after the Update EPG logic before the recurring recordings process is run. This would allow "tweaked" guide data to be added into the scheduled recording table. An example is a recent thread that talked about manually adding the OAD to the description. Users need to preporcess files but it is trivial in a sqlite script
because it impossible to do with the post update process. It should probably run in this area.
Martin
Code:
update epg_event
set subtitle = substr(original_air_date,1,4)
where unique_id like 'MV%'
because it impossible to do with the post update process. It should probably run in this area.
Code:
2017-06-28 06:48:44.403 [DEBUG][10] UpdateEPG@4
2017-06-28 06:48:44.403 [DEBUG][10] Updating recording schedule
2017-06-28 06:48:44.403 [INFO][10] deleting old conflicts
2017-06-28 06:48:44.411 [INFO][10] UpdateAllRecurringRecordings()
Martin