zephyr_mirror: Drop PING messages earlier.
This simplified debugging. (imported from commit 4571901a5349d5ec1ec9246c94edb65e016160ac)
This commit is contained in:
parent
18b87a0ede
commit
e01519e8b7
|
@ -159,6 +159,11 @@ def process_loop(log):
|
|||
zsig, body = notice.message.split("\x00", 1)
|
||||
is_personal = False
|
||||
is_huddle = False
|
||||
|
||||
if notice.opcode != "":
|
||||
# skip PING messages
|
||||
continue
|
||||
|
||||
if isinstance(zsig, str):
|
||||
# Check for width unicode character u'\u200B'.encode("utf-8")
|
||||
if u'\u200B'.encode("utf-8") in zsig:
|
||||
|
@ -180,10 +185,6 @@ def process_loop(log):
|
|||
huddle_recipients_list.append(sender)
|
||||
huddle_recipients = ",".join(huddle_recipients_list)
|
||||
|
||||
if notice.opcode != "":
|
||||
# skip PING messages
|
||||
continue
|
||||
|
||||
# Drop messages not to the listed subscriptions
|
||||
if (notice.cls.lower() not in mit_subs_list.all_subs) and not \
|
||||
(is_personal and options.forward_personals):
|
||||
|
|
Loading…
Reference in a new issue