Don't deduplicate global messages (NICK/QUIT)
This commit is contained in:
parent
45f02c323b
commit
82a98c9539
|
@ -6,6 +6,8 @@ import main
|
||||||
from utils.logging.debug import debug
|
from utils.logging.debug import debug
|
||||||
|
|
||||||
def dedup(numName, b):
|
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)
|
c = deepcopy(b)
|
||||||
if "time" in c.keys():
|
if "time" in c.keys():
|
||||||
del c["time"]
|
del c["time"]
|
||||||
|
|
Loading…
Reference in New Issue