From 79661e97a6c7f9bc728ba70ffa786261abcef112 Mon Sep 17 00:00:00 2001 From: mkrupczak3 Date: Fri, 24 May 2024 19:30:01 -0400 Subject: [PATCH] MainActivity.java fix compile error --- app/src/main/java/com/openathena/MainActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/openathena/MainActivity.java b/app/src/main/java/com/openathena/MainActivity.java index 3df36691..7cc72363 100644 --- a/app/src/main/java/com/openathena/MainActivity.java +++ b/app/src/main/java/com/openathena/MainActivity.java @@ -825,7 +825,7 @@ public void calculateImage(View view, boolean shouldISendCoT) // e.g. for use with ATAK app if (shouldISendCoT) { // NOTE that the CoT spec requires WGS84 hae, not EGM96 above mean sea level - CursorOnTargetSender.sendCoT(this, latitude, longitude, altitudeDouble, theta, exif.getAttribute(ExifInterface.TAG_DATETIME), null); + CursorOnTargetSender.sendCoT(this, latitude, longitude, altitudeDouble, theta, exif.getAttribute(ExifInterface.TAG_DATETIME)); } } catch (XMPException e) { Log.e(TAG, e.getMessage());