Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: Allow to modify the scheduled stop time when the recording is ac…
…tive
  • Loading branch information
perexg committed May 5, 2015
1 parent 6250279 commit 2a35e4b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -1291,7 +1291,11 @@ dvr_entry_class_stop_set(void *o, const void *_v)
}
if (v < de->de_start)
v = de->de_start;
return dvr_entry_class_time_set(de, &de->de_stop, v);
if (v != de->de_stop) {
de->de_stop = v;
return 1;
}
return 0;
}

static int
Expand Down

0 comments on commit 2a35e4b

Please sign in to comment.