Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: don't mark entries as time missed when job was completed, fixes …
…#3411
  • Loading branch information
perexg committed Dec 11, 2015
1 parent 27f794d commit 676a34f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -599,7 +599,8 @@ dvr_entry_set_timer(dvr_entry_t *de)
goto recording;
}

if(htsmsg_is_empty(de->de_files))
/* Files are missing and job was completed */
if(htsmsg_is_empty(de->de_files) && !de->de_dont_reschedule)
dvr_entry_missed_time(de, de->de_last_error);
else
dvr_entry_completed(de, de->de_last_error);
Expand Down

0 comments on commit 676a34f

Please sign in to comment.