Add checks in dedup for time-less messages

This commit is contained in:
Mark Veidemanis 2020-10-28 22:46:22 +00:00
parent b16b5d690b
commit 812db95995
1 changed files with 2 additions and 1 deletions

View File

@ -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"]