Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: Fix EPG running condition check regression introduced by previou…
…s commits
  • Loading branch information
perexg committed Nov 3, 2015
1 parent 8aa97d4 commit 78a715e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -1601,7 +1601,7 @@ void dvr_event_running(epg_broadcast_t *e, epg_source_t esrc, int running)
epg_broadcast_get_title(e, NULL),
channel_get_name(e->channel));
}
} else {
} else if ((!running && de->de_dvb_eid == e->dvb_eid) || running) {
srcname = de->de_dvb_eid == e->dvb_eid ? "event" : "other running event";
if (!de->de_running_stop ||
de->de_running_start > de->de_running_stop) {
Expand Down

0 comments on commit 78a715e

Please sign in to comment.