DVR: NOSTATE belogs to the upcoming recordings - user is allowed to edit it, fixes #2426
This commit is contained in:
parent
5a672586e9
commit
5e0908cc7f
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue