0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-29 14:28:56 +02:00

Fix invalid roomNID returned

This commit is contained in:
Till Faelligen 2023-03-07 15:35:08 +01:00
parent 11a3fcc6cb
commit baef523cb0
No known key found for this signature in database
GPG key ID: ACCDC9606D472758

View file

@ -608,6 +608,7 @@ func persistEvents(ctx context.Context, db storage.Database, events []*gomatrixs
logrus.WithError(err).Error("failed to get or create roomNID")
continue
}
roomNID = roomInfo.RoomNID
eventTypeNID, err := db.GetOrCreateEventTypeNID(ctx, ev.Type())
if err != nil {