0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-27 13:28:58 +02:00

Drop m.room.create events in federation /send transaction (#2179)

This commit is contained in:
Neil Alexander 2022-02-11 15:18:14 +00:00 committed by GitHub
parent 4e75ab9930
commit 88b45d5cd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -258,6 +258,9 @@ func (t *txnReq) processTransaction(ctx context.Context) (*gomatrixserverlib.Res
util.GetLogger(ctx).WithError(err).Debugf("Transaction: Failed to parse event JSON of event %s", string(pdu))
continue
}
if event.Type() == gomatrixserverlib.MRoomCreate && event.StateKeyEquals("") {
continue
}
if api.IsServerBannedFromRoom(ctx, t.rsAPI, event.RoomID(), t.Origin) {
results[event.EventID()] = gomatrixserverlib.PDUResult{
Error: "Forbidden by server ACLs",