mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	Ensure datetime comparison is the same (native vs aware) (#11789)
This commit is contained in:
		
							parent
							
								
									fc5a926892
								
							
						
					
					
						commit
						926d394b2f
					
				@ -72,9 +72,11 @@ class RecordingExporter(threading.Thread):
 | 
			
		||||
    def save_thumbnail(self, id: str) -> str:
 | 
			
		||||
        thumb_path = os.path.join(CLIPS_DIR, f"export/{id}.webp")
 | 
			
		||||
 | 
			
		||||
        if datetime.datetime.fromtimestamp(self.start_time) < datetime.datetime.now(
 | 
			
		||||
            datetime.timezone.utc
 | 
			
		||||
        ).replace(minute=0, second=0, microsecond=0):
 | 
			
		||||
        if datetime.datetime.fromtimestamp(
 | 
			
		||||
            self.start_time
 | 
			
		||||
        ) < datetime.datetime.now().astimezone(datetime.timezone.utc).replace(
 | 
			
		||||
            minute=0, second=0, microsecond=0
 | 
			
		||||
        ):
 | 
			
		||||
            # has preview mp4
 | 
			
		||||
            try:
 | 
			
		||||
                preview: Previews = (
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user