diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-29 20:47:44 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-29 20:47:44 +0100 |
commit | 1316a3031b829daa28eda205bd3cdf14b192a0b4 (patch) | |
tree | 71d4844e21456652918cb02594a9386a87db92b8 /connector/xmpp | |
parent | 74314696328a52779b83777eddac6bb506a3846b (diff) | |
download | easybridge-1316a3031b829daa28eda205bd3cdf14b192a0b4.tar.gz easybridge-1316a3031b829daa28eda205bd3cdf14b192a0b4.zip |
Load member lists and avatar (low res) from facebook
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 d858317..1f77fdf 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 MediaObject(info.Picture) != nil { + if info.Picture.MediaObject != nil { // TODO return fmt.Errorf("Room picture change not implemented on xmpp") } |