DVR: NOSTATE belogs to the upcoming recordings - user is allowed to edit it, fixes #2426

This commit is contained in:
Jaroslav Kysela 2014-10-27 19:48:18 +01:00
parent 5a672586e9
commit 5e0908cc7f

View file

@ -69,7 +69,7 @@ static int is_dvr_entry_finished(dvr_entry_t *entry)
static int is_dvr_entry_upcoming(dvr_entry_t *entry)
{
dvr_entry_sched_state_t state = entry->de_sched_state;
return state == DVR_RECORDING || state == DVR_SCHEDULED;
return state == DVR_RECORDING || state == DVR_SCHEDULED || state == DVR_NOSTATE;
}
static int is_dvr_entry_failed(dvr_entry_t *entry)