Skip to content

Commit

Permalink
fixed variable name in ExifModifierModule
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Haußmann committed Aug 23, 2024
1 parent e0fbb2b commit 7b52a20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void saveImageWithProperties(String base64ImageData, Map<String, String>
// Modify the EXIF data
String filePath = getRealPathFromURI(context, uri);
ExifInterface exifInterface = new ExifInterface(filePath);
for (Map.Entry<String, String> entry : exifProperties.entrySet()) {
for (Map.Entry<String, String> entry : properties.entrySet()) {
exifInterface.setAttribute(entry.getKey(), entry.getValue());
}
exifInterface.saveAttributes();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lulububu/react-native-exif-modifier",
"version": "0.1.8",
"version": "0.1.9",
"description": "Allows you to modify the exif data of an image and save it.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit 7b52a20

Please sign in to comment.