Don't deduplicate global messages (NICK/QUIT)

pull/1/head
Mark Veidemanis 4 years ago
parent 45f02c323b
commit 82a98c9539

@ -6,6 +6,8 @@ import main
from utils.logging.debug import debug
def dedup(numName, b):
if b["type"] in ["quit", "nick"]:
return False # QUITs and NICKs can't be duplicated, they are global and duplications are likely
c = deepcopy(b)
if "time" in c.keys():
del c["time"]

Loading…
Cancel
Save