Fix bug with using muser attribute when absent

This commit is contained in:
2020-11-01 19:03:56 +00:00
parent 5d09e1ade7
commit a0bea0b18a
2 changed files with 4 additions and 2 deletions

View File

@@ -18,7 +18,8 @@ def parsemeta(numName, c):
# need to check if this was received from a relay
# in which case, do not do this
if c["type"] in ["msg", "notice", "action", "topic", "mode"]:
userinfo.editUser(c["net"], c["muser"])
if "muser" in c.keys():
userinfo.editUser(c["net"], c["muser"])
#if c["type"] == "mode":
# userinfo.updateMode(c)
elif c["type"] == "nick":