mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Store json as UTF-8 and not bytes
This commit is contained in:
parent
75085bb4d1
commit
c39beb5559
@ -168,7 +168,7 @@ class DataStore(RoomMemberStore, RoomStore,
|
||||
values={
|
||||
"event_id": event.event_id,
|
||||
"room_id": event.room_id,
|
||||
"json": encode_canonical_json(event_dict),
|
||||
"json": encode_canonical_json(event_dict).decode("UTF-8"),
|
||||
},
|
||||
or_replace=True,
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user