mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	fix(server): mismatch createdAt value in table and table (#688)
This commit is contained in:
		
							parent
							
								
									789bc8563c
								
							
						
					
					
						commit
						ccf792f9d3
					
				@ -84,7 +84,7 @@ export class MetadataExtractionProcessor {
 | 
				
			|||||||
      newExif.exifImageWidth = exifData['ExifImageWidth'] || exifData['ImageWidth'] || null;
 | 
					      newExif.exifImageWidth = exifData['ExifImageWidth'] || exifData['ImageWidth'] || null;
 | 
				
			||||||
      newExif.fileSizeInByte = fileSize || null;
 | 
					      newExif.fileSizeInByte = fileSize || null;
 | 
				
			||||||
      newExif.orientation = exifData['Orientation'] || null;
 | 
					      newExif.orientation = exifData['Orientation'] || null;
 | 
				
			||||||
      newExif.dateTimeOriginal = exifData['DateTimeOriginal'] || null;
 | 
					      newExif.dateTimeOriginal = new Date(asset.createdAt) || null;
 | 
				
			||||||
      newExif.modifyDate = exifData['ModifyDate'] || null;
 | 
					      newExif.modifyDate = exifData['ModifyDate'] || null;
 | 
				
			||||||
      newExif.lensModel = exifData['LensModel'] || null;
 | 
					      newExif.lensModel = exifData['LensModel'] || null;
 | 
				
			||||||
      newExif.fNumber = exifData['FNumber'] || null;
 | 
					      newExif.fNumber = exifData['FNumber'] || null;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user