diff --git a/Core/src/org/sleuthkit/autopsy/modules/exif/ExifParserFileIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/exif/ExifParserFileIngestModule.java index ee9e3fa3662b4190fd9de7c0c2db3a4506a04954..deb55fa2abccec8500bc9f6ce72c2e7791eaef57 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/exif/ExifParserFileIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/exif/ExifParserFileIngestModule.java @@ -168,7 +168,7 @@ ProcessResult processFile(AbstractFile f) { logger.log(Level.INFO, "Error getting time zones", ex); //NON-NLS } } - Date date = exifDir.getDate(ExifSubIFDDirectory.TAG_DATETIME_ORIGINAL); + Date date = exifDir.getDate(ExifSubIFDDirectory.TAG_DATETIME_ORIGINAL, timeZone); if (date != null) { attributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_CREATED.getTypeID(), ExifParserModuleFactory.getModuleName(), date.getTime() / 1000)); } @@ -394,4 +394,4 @@ public void shutDown() { } } } -} \ No newline at end of file +}