Undid an unnecessary "improvement"
This commit is contained in:
parent
5ac1d10dec
commit
fcabaf420a
2
main.py
2
main.py
|
|
@ -70,7 +70,7 @@ class ClientWrapper(object):
|
||||||
print(msg)
|
print(msg)
|
||||||
|
|
||||||
# We only care about standard messages, not subtypes, as those usually just channel activity
|
# We only care about standard messages, not subtypes, as those usually just channel activity
|
||||||
if msg.get("subtype") not in [None, "message_replied"]:
|
if msg.get("subtype") is not None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Handle Message
|
# Handle Message
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue