Minor fudge for summary only records to ensure a title gets set.
This commit is contained in:
parent
8fb4324bbe
commit
8aa76ce6a6
1 changed files with 3 additions and 1 deletions
|
@ -490,7 +490,9 @@ static int _opentv_parse_event_section
|
|||
|
||||
/* Update */
|
||||
if (ee) {
|
||||
if (ev.title)
|
||||
if (!ev.title && ebc->episode)
|
||||
save |= epg_episode_set_title(ee, ebc->episode->title);
|
||||
else if (ev.title)
|
||||
save |= epg_episode_set_title(ee, ev.title);
|
||||
if (ev.summary)
|
||||
save |= epg_episode_set_summary(ee, ev.summary);
|
||||
|
|
Loading…
Add table
Reference in a new issue