Fixed variable name (closes: #72)

This commit is contained in:
Nex 2021-07-23 18:05:51 +02:00
parent 8e099e5985
commit ba84b3c18d

View File

@ -43,10 +43,10 @@ class LocationdClients(IOSExtraction):
for ts in self.timestamps:
if ts in record.keys():
records.append({
"timestamp": entry[ts],
"timestamp": record[ts],
"module": self.__class__.__name__,
"event": ts,
"data": f"{ts} from {entry['package']}"
"data": f"{ts} from {record['package']}"
})
return records