mirror of
https://github.com/matrix-org/synapse.git
synced 2026-05-06 04:36:43 +02:00
Fix FilteringStore.get_user_filter to work with postgres
This commit is contained in:
parent
e5acc8a47b
commit
fc012aa8dc
@ -34,7 +34,7 @@ class FilteringStore(SQLBaseStore):
|
||||
desc="get_user_filter",
|
||||
)
|
||||
|
||||
defer.returnValue(json.loads(def_json.decode("utf-8")))
|
||||
defer.returnValue(json.loads(str(def_json).decode("utf-8")))
|
||||
|
||||
def add_user_filter(self, user_localpart, user_filter):
|
||||
def_json = json.dumps(user_filter).encode("utf-8")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user