From b1ae7776219b2ad7a60e2ee8a74024748bfd3f3e Mon Sep 17 00:00:00 2001 From: Nex Date: Tue, 27 Jul 2021 21:29:14 +0200 Subject: [PATCH] Fixed variable name --- mvt/ios/modules/fs/locationd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvt/ios/modules/fs/locationd.py b/mvt/ios/modules/fs/locationd.py index 48d1136..799bb36 100644 --- a/mvt/ios/modules/fs/locationd.py +++ b/mvt/ios/modules/fs/locationd.py @@ -62,7 +62,7 @@ class LocationdClients(IOSExtraction): result["package"] = app for ts in self.timestamps: if ts in result.keys(): - result[ts] = convert_timestamp_to_iso(convert_mactime_to_unix(result["date"])) + result[ts] = convert_timestamp_to_iso(convert_mactime_to_unix(result[ts])) self.results.append(result)