Don't stop message processing loop if room creation fails

This commit is contained in:
Tulir Asokan 2021-06-19 02:22:21 +03:00
parent bc7a82c0be
commit 30ddd788ae

View file

@ -228,7 +228,7 @@ func (portal *Portal) handleMessageLoop() {
err := portal.CreateMatrixRoom(msg.source)
if err != nil {
portal.log.Errorln("Failed to create portal room:", err)
return
continue
}
portal.syncDoublePuppetDetailsAfterCreate(msg.source)
}