Don't store backfilled events using request context (#1478)

main
Neil Alexander 2020-10-05 11:06:31 +01:00 committed by GitHub
parent 3bd66ff196
commit c4756eee0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ func (r *messagesReq) backfill(roomID string, backwardsExtremities map[string][]
// up in responses to sync requests. // up in responses to sync requests.
for i := range res.Events { for i := range res.Events {
_, err = r.db.WriteEvent( _, err = r.db.WriteEvent(
r.ctx, context.Background(),
&res.Events[i], &res.Events[i],
[]gomatrixserverlib.HeaderedEvent{}, []gomatrixserverlib.HeaderedEvent{},
[]string{}, []string{},