summaryrefslogtreecommitdiff
path: root/recording.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-05-29 11:22:39 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-05-29 11:22:39 +0200
commitca66d29798db7cd9c3eb1bb8429612966e639dce (patch)
tree599570cac5f721beb4c03b134301e342d44214e8 /recording.c
parent3b69903d230acda0e336b1528d9437360e24d82e (diff)
downloadvdr-ca66d29798db7cd9c3eb1bb8429612966e639dce.tar.gz
vdr-ca66d29798db7cd9c3eb1bb8429612966e639dce.tar.bz2
Fixed listing recordings with empty episode names in the LSTR command
Diffstat (limited to 'recording.c')
-rw-r--r--recording.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/recording.c b/recording.c
index 8ee26c8a..93b0af8f 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 1.106 2005/05/28 11:36:14 kls Exp $
+ * $Id: recording.c 1.107 2005/05/29 11:16:57 kls Exp $
*/
#include "recording.h"
@@ -603,7 +603,8 @@ const char *cRecording::Title(char Delimiter, bool NewIndicator, int Level) cons
Delimiter,
s);
// let's not display a trailing '~':
- stripspace(titleBuffer);
+ if (!NewIndicator)
+ stripspace(titleBuffer);
s = &titleBuffer[strlen(titleBuffer) - 1];
if (*s == '~')
*s = 0;