From ad123342f7ed0a0809b51189b59fe9a1ff2848ce Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 17 Feb 2020 21:12:30 +0100 Subject: [PATCH] Fix ezbr kicking himself --- appservice/server.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/appservice/server.go b/appservice/server.go index 33e095a..da01e07 100644 --- a/appservice/server.go +++ b/appservice/server.go @@ -85,8 +85,8 @@ func handleTxn(w http.ResponseWriter, r *http.Request) { for i := range txn.Events { ev := &txn.Events[i] - if ev.Sender == ezbrMxId() { - // Don't do anything with events originating from the system + if strings.HasPrefix(ev.Sender, "@" + registration.SenderLocalpart) { + // Don't do anything with ezbr events that come back to us continue } err = handleTxnEvent(ev) @@ -189,9 +189,7 @@ func handleSystemMessage(mxid string, msg string) { ezbrSystemSend(mxid, "- accounts: list accounts") ezbrSystemSend(mxid, "- join : join public chat room") ezbrSystemSend(mxid, "- query : open private buffer to contact") - case "list": - case "account": - case "accounts": + case "list", "account", "accounts": one := false if accts, ok := registeredAccounts[mxid]; ok { for name, acct := range accts {