aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorAubrey-Li <63608597+Aubrey-Li@users.noreply.github.com>2021-09-06 15:11:28 -0400
committerAubrey-Li <63608597+Aubrey-Li@users.noreply.github.com>2021-09-06 15:11:28 -0400
commitb7a88c6292c2e7bfffc3cdc4f7c7037922b3de25 (patch)
tree6e8ef1b6263220a42f4abe2da3068d3fe5efadcb /src/client/documents/Documents.ts
parentdf03b0bbf84b8314423542d90c29a0a127638a73 (diff)
minor updates
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 1e2478c94..f112bad38 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -1376,8 +1376,8 @@ export namespace DocUtils {
}
proto.contentSize = result.contentSize;
// exif gps data coordinates are stored in DMS (Degrees Minutes Seconds), the following operation converts that to decimal coordinates
- proto.lat = getDecimalfromDMS(result.exifData?.data?.gps.GPSLatitude, result.exifData?.data?.gps.GPSLatitudeRef);
- proto.lng = getDecimalfromDMS(result.exifData?.data?.gps.GPSLongitude, result.exifData?.data?.gps.GPSLongitudeRef);
+ proto.lat = getDecimalfromDMS(result.exifData?.data?.gps?.GPSLatitude, result.exifData?.data?.gps?.GPSLatitudeRef);
+ proto.lng = getDecimalfromDMS(result.exifData?.data?.gps?.GPSLongitude, result.exifData?.data?.gps?.GPSLongitudeRef);
}
generatedDocuments.push(doc);
}