mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 06:03:45 +01:00
Update insert
This commit is contained in:
parent
f5d8fdf0a7
commit
70d93cafdb
1 changed files with 6 additions and 1 deletions
|
@ -537,7 +537,12 @@ class EventsBackgroundUpdatesStore(BackgroundUpdateStore):
|
|||
txn=txn,
|
||||
table="event_labels",
|
||||
values=[
|
||||
{"event_id": event_id, "label": label}
|
||||
{
|
||||
"event_id": event_id,
|
||||
"label": label,
|
||||
"room_id": event_json["room_id"],
|
||||
"topological_ordering": event_json["depth"],
|
||||
}
|
||||
for label in event_json["content"].get(
|
||||
EventContentFields.Labels, []
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue