summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2009-01-30 16:48:40 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2009-01-30 16:48:40 +0100
commit9a7473eaf3f1512dc213cafe563c6a9d1a6c974b (patch)
tree29fbfaec59a936a825a6cfede4a6dc0bf30dae75
parent2bc0af882ca8c2dfe6edbda7a113416c0005f13f (diff)
downloadvdr-9a7473eaf3f1512dc213cafe563c6a9d1a6c974b.tar.gz
vdr-9a7473eaf3f1512dc213cafe563c6a9d1a6c974b.tar.bz2
Fixed handling the 'new' indicator in the recordings menu for TS recordings
-rw-r--r--HISTORY1
-rw-r--r--recording.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index d81e78c5..9cb133bb 100644
--- a/HISTORY
+++ b/HISTORY
@@ -5983,3 +5983,4 @@ Video Disk Recorder Revision History
- Fixed a hangup when replaying a TS recording with subtitles activated (reported
by Timo Helkio).
+- Fixed handling the 'new' indicator in the recordings menu for TS recordings.
diff --git a/recording.c b/recording.c
index 9c7db99f..2b44b1a4 100644
--- a/recording.c
+++ b/recording.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recording.c 2.8 2009/01/24 13:11:04 kls Exp $
+ * $Id: recording.c 2.9 2009/01/30 16:27:19 kls Exp $
*/
#include "recording.h"
@@ -286,6 +286,7 @@ bool cResumeFile::Save(int Index)
if (f) {
fprintf(f, "I %d\n", Index);
fclose(f);
+ Recordings.ResetResume(fileName);
}
else
LOG_ERROR_STR(fileName);