mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-26 15:08:28 +00:00
Don't store backfilled events using request context (#1478)
This commit is contained in:
parent
3bd66ff196
commit
c4756eee0e
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,7 @@ func (r *messagesReq) backfill(roomID string, backwardsExtremities map[string][]
|
|||
// up in responses to sync requests.
|
||||
for i := range res.Events {
|
||||
_, err = r.db.WriteEvent(
|
||||
r.ctx,
|
||||
context.Background(),
|
||||
&res.Events[i],
|
||||
[]gomatrixserverlib.HeaderedEvent{},
|
||||
[]string{},
|
||||
|
|
Loading…
Reference in a new issue