Rename time to ts

This commit is contained in:
2022-07-21 13:39:54 +01:00
parent 4734a271a1
commit 2177766d90
3 changed files with 9 additions and 9 deletions

View File

@@ -8,8 +8,8 @@ from utils.logging.debug import debug
def dedup(numName, b):
c = deepcopy(b)
if "time" in c.keys():
del c["time"]
if "ts" in c.keys():
del c["ts"]
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"]