mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Fixed listing recordings with empty episode names in the LSTR command
This commit is contained in:
		| @@ -197,6 +197,8 @@ Stefan Huelswitt <huels@iname.com> | ||||
|  for fixing handling symbolic links in cRecordings::ScanVideoDir() | ||||
|  for reporting a memory leak in tComponent | ||||
|  for fixing a memory leak in cDvbPlayer | ||||
|  for pointing out that recordings with empty episode names were not listed correctly | ||||
|  in the LSTR command | ||||
|  | ||||
| Ulrich R<>der <roeder@efr-net.de> | ||||
|  for pointing out that there are channels that have a symbol rate higher than 27500 | ||||
|   | ||||
							
								
								
									
										2
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								HISTORY
									
									
									
									
									
								
							| @@ -3573,3 +3573,5 @@ Video Disk Recorder Revision History | ||||
| - Avoiding unnecessary calls to getLength() in libsi/si.c, and avoiding the | ||||
|   '& 0xff' in CRC32::crc32() of libsi/util.c (thanks to Georg Acher). | ||||
| - Speeded up deleting duplicate channels. | ||||
| - Fixed listing recordings with empty episode names in the LSTR command (thanks | ||||
|   to Stefan Huelswitt for pointing this out). | ||||
|   | ||||
| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user