diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-29 18:30:43 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-29 18:34:14 +0100 |
commit | 74314696328a52779b83777eddac6bb506a3846b (patch) | |
tree | 599cf464488ee5137ab1b02d3b5d6c8381a483bc /connector/xmpp | |
parent | 2649e41c85283c680b9e1aa3294868b985aecc22 (diff) | |
download | easybridge-74314696328a52779b83777eddac6bb506a3846b.tar.gz easybridge-74314696328a52779b83777eddac6bb506a3846b.zip |
Support for external processes; stub FB messenger bridge
Diffstat (limited to 'connector/xmpp')
-rw-r--r-- | connector/xmpp/xmpp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connector/xmpp/xmpp.go b/connector/xmpp/xmpp.go index efaaf64..d858317 100644 --- a/connector/xmpp/xmpp.go +++ b/connector/xmpp/xmpp.go @@ -272,7 +272,7 @@ func (xm *XMPP) SetRoomInfo(roomId RoomID, info *RoomInfo) error { } } - if info.Picture != nil { + if MediaObject(info.Picture) != nil { // TODO return fmt.Errorf("Room picture change not implemented on xmpp") } |