Have ChatInteraction MessageListener (read-up-to) run only for non-empty messages

This commit is contained in:
fiaxh 2019-02-17 16:15:46 +01:00
parent b97aa9b44b
commit d27fb963e7

View file

@ -126,7 +126,7 @@ public class ChatInteraction : StreamInteractionModule, Object {
private class ReceivedMessageListener : MessageListener {
public string[] after_actions_const = new string[]{ "DEDUPLICATE" };
public string[] after_actions_const = new string[]{ "DEDUPLICATE", "FILTER_EMPTY" };
public override string action_group { get { return "OTHER_NODES"; } }
public override string[] after_actions { get { return after_actions_const; } }