summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/JpegMeta.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/JpegMeta.php b/inc/JpegMeta.php
index c8477fa9f..41e6e0803 100644
--- a/inc/JpegMeta.php
+++ b/inc/JpegMeta.php
@@ -1020,6 +1020,9 @@ class JpegMeta
/*************************************************************/
function _parseAll()
{
+ if (!isset($this->_info['file'])) {
+ $this->_parseFileInfo();
+ }
if (!isset($this->_markers)) {
$this->_readJPEG();
}
@@ -1043,9 +1046,6 @@ class JpegMeta
if (!isset($this->_info['adobe'])) {
$this->_parseMarkerAdobe();
}
- if (!isset($this->_info['file'])) {
- $this->_parseFileInfo();
- }
}
/*************************************************************/