From 491b74a0f58c5c03d466da198e927729e65f8b4c Mon Sep 17 00:00:00 2001 From: Mark McKinnon Date: Mon, 23 Mar 2020 10:56:08 -0400 Subject: [PATCH] Update oruxmaps.py Update addPoint with correct parameters. --- InternalPythonModules/android/oruxmaps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalPythonModules/android/oruxmaps.py b/InternalPythonModules/android/oruxmaps.py index bc148f1cf4..7a939e1972 100644 --- a/InternalPythonModules/android/oruxmaps.py +++ b/InternalPythonModules/android/oruxmaps.py @@ -146,7 +146,7 @@ class OruxMapsAnalyzer(general.AndroidComponentAnalyzer): altitude = trackpointsResultSet.getDouble("trkptalt") time = trackpointsResultSet.getLong("trkpttime") / 1000 # milliseconds since unix epoch - geoPointList.addPoint(TskGeoTrackpointsUtil.GeoTrackPoint(latitude, longitude, altitude, segmentName, 0, 0, 0, time)) + geoPointList.addPoint(TskGeoTrackpointsUtil.GeoTrackPointList.GeoTrackPoint(latitude, longitude, altitude, segmentName, 0, 0, 0, time)) try: geoartifact = geoArtifactHelper.addTrack(segmentName, geoPointList, None)