From 3bb0d5020ca80749d2326358314c8f99c4061981 Mon Sep 17 00:00:00 2001 From: Nex Date: Tue, 27 Jul 2021 21:27:43 +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 16d706e..48d1136 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["date"])) self.results.append(result)