diff --git a/utils/dedup.py b/utils/dedup.py index 3545e68..a5c3c45 100644 --- a/utils/dedup.py +++ b/utils/dedup.py @@ -7,7 +7,8 @@ from utils.logging.debug import debug def dedup(numName, b): c = deepcopy(b) - del c["time"] + if "time" in c.keys(): + del c["time"] c["approxtime"] = str(datetime.utcnow().timestamp())[:main.config["Tweaks"]["DedupPrecision"]] castHash = siphash24(main.hashKey, dumps(c, sort_keys=True).encode("utf-8")) del c["approxtime"]