aboutsummaryrefslogtreecommitdiff
path: root/connector
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-02-26 17:03:49 +0100
committerAlex Auvolat <alex@adnab.me>2020-02-26 17:03:49 +0100
commit4270202972ec80ca98a5159e30978378194c1b41 (patch)
tree6b25f26b926afdf268f2ebeaf5330f431b4f808d /connector
parentd97a76fcc338e7a532d0796ce5b12bdefb0a6f17 (diff)
downloadeasybridge-4270202972ec80ca98a5159e30978378194c1b41.tar.gz
easybridge-4270202972ec80ca98a5159e30978378194c1b41.zip
Try to fix stuff
Diffstat (limited to 'connector')
-rw-r--r--connector/xmpp/xmpp.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/connector/xmpp/xmpp.go b/connector/xmpp/xmpp.go
index 0573ddb..698016f 100644
--- a/connector/xmpp/xmpp.go
+++ b/connector/xmpp/xmpp.go
@@ -200,7 +200,11 @@ func (xm *XMPP) handleXMPP() error {
if v.Subject != "" && v.Type == "groupchat" {
author := UserID("")
if len(remote_sp) == 2 {
- author = UserID(remote_sp[1] + "@" + remote_sp[0])
+ if remote_sp[1] == xm.nickname {
+ author = xm.User()
+ } else {
+ author = UserID(remote_sp[1] + "@" + remote_sp[0])
+ }
}
xm.handler.RoomInfoUpdated(RoomID(remote_sp[0]), author, &RoomInfo{
Topic: v.Subject,