Skip to content

Commit

Permalink
Merge pull request #10 from ElementareTeilchen/patch-3
Browse files Browse the repository at this point in the history
BUGFIX: Correct variable name
  • Loading branch information
kdambekalns authored Mar 24, 2017
2 parents 7c46b7e + 406876f commit 783765a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Extractor/ExifExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function extractMetaData(FlowResource $resource, MetaDataCollection $meta
try {
$exifData = @exif_read_data($resource->createTemporaryLocalCopy(), 'EXIF');
} catch (FlowResourceException $exception) {
throw new ExtractorException('Could not extract EXIF data from ' . $resource->getFilename(), 1484059228, $e);
throw new ExtractorException('Could not extract EXIF data from ' . $resource->getFilename(), 1484059228, $exception);
}
if ($exifData === false) {
throw new ExtractorException('Could not extract EXIF data from ' . $resource->getFilename(), 1484056779);
Expand Down

0 comments on commit 783765a

Please sign in to comment.