Adjust logic for adding members in backfill

This commit is contained in:
Tulir Asokan 2021-11-02 12:28:53 +02:00
parent 1e3c3a5548
commit 7218f9ad76

View file

@ -1089,7 +1089,7 @@ func (portal *Portal) backfill(source *User, messages []*waProto.HistorySyncMsg)
portal.log.Debugfln("Skipping unsupported message %s in backfill", info.ID) portal.log.Debugfln("Skipping unsupported message %s in backfill", info.ID)
continue continue
} }
if history && !portal.IsPrivateChat() && !portal.bridge.StateStore.IsInRoom(portal.MXID, puppet.MXID) { if history && !portal.IsPrivateChat() && !intent.IsCustomPuppet && !portal.bridge.StateStore.IsInRoom(portal.MXID, puppet.MXID) {
addMember(puppet) addMember(puppet)
} }
err := portal.appendBatchEvents(converted, info, &batch.Events, infos) err := portal.appendBatchEvents(converted, info, &batch.Events, infos)