Add desc and fix error message for "Extract EXIF"

This commit is contained in:
toby 2017-05-08 12:48:43 -04:00
parent 478af40359
commit ee25df0c28
2 changed files with 6 additions and 1 deletions

View file

@ -28,7 +28,7 @@ const Image = {
lines.unshift(`Found ${numTags} tags.\n`);
return lines.join("\n");
} catch (err) {
throw "Could not EXIF data from image: " + err;
throw "Could not extract EXIF data from image: " + err;
}
},
};