mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Fixed VPS handling when spawning a pattern timer, in case Setup.UseVps is false
This commit is contained in:
		| @@ -3662,6 +3662,8 @@ J | ||||
|  for adding support for EAC3 audio from other sources | ||||
|  for reporting a crash if a pattern timer spawns a timer that uses EPISODE and the | ||||
|  event has no short text | ||||
|  for reporting a bug in VPS handling when spawning a pattern timer, in case Setup.UseVps | ||||
|  is false | ||||
|  | ||||
| Stefan Verse <Verse@amotronics.de> | ||||
|  for fixing an occasional black screen when switching channels | ||||
|   | ||||
							
								
								
									
										4
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								HISTORY
									
									
									
									
									
								
							| @@ -9578,7 +9578,7 @@ Video Disk Recorder Revision History | ||||
|   given (reported by Manuel Reimer). | ||||
| - Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried K<>hler). | ||||
|  | ||||
| 2021-01-04: | ||||
| 2021-01-07: | ||||
|  | ||||
| - Fixed strreplace() to handle NULL strings (reported by J<>rgen Schneider). | ||||
| - Somewhere down the road the 'x' bit of Doxyfile.filter got lost, so the | ||||
| @@ -9589,3 +9589,5 @@ Video Disk Recorder Revision History | ||||
| - Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried K<>hler). | ||||
| - Fixed initializing the cChannel::schedule pointer after reading EPG data with PUTE | ||||
|   (reported by Manuel Reimer). | ||||
| - Fixed VPS handling when spawning a pattern timer, in case Setup.UseVps is false | ||||
|   (reported by J<>rgen Schneider). | ||||
|   | ||||
							
								
								
									
										4
									
								
								timers.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								timers.c
									
									
									
									
									
								
							| @@ -4,7 +4,7 @@ | ||||
|  * See the main source file 'vdr.c' for copyright information and | ||||
|  * how to reach the author. | ||||
|  * | ||||
|  * $Id: timers.c 5.1 2020/12/26 15:49:01 kls Exp $ | ||||
|  * $Id: timers.c 5.2 2021/01/07 16:00:17 kls Exp $ | ||||
|  */ | ||||
|  | ||||
| #include "timers.h" | ||||
| @@ -183,7 +183,7 @@ cTimer::cTimer(const cEvent *Event, const char *FileName, const cTimer *PatternT | ||||
|   remote = NULL; | ||||
|   event = NULL; | ||||
|   if (!PatternTimer || PatternTimer->HasFlags(tfVps)) { | ||||
|      if (Event->Vps() && Setup.UseVps) | ||||
|      if (Event->Vps() && (PatternTimer || Setup.UseVps)) | ||||
|         SetFlags(tfVps); | ||||
|      } | ||||
|   LOCK_CHANNELS_READ; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user