Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: NOSTATE belogs to the upcoming recordings - user is allowed to e…
…dit it, fixes #2426
  • Loading branch information
perexg committed Oct 27, 2014
1 parent 5a67258 commit 5e0908c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/api_dvr.c
Expand Up @@ -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)
Expand Down

0 comments on commit 5e0908c

Please sign in to comment.