mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 12:33:49 +01:00
Fix FilteringStore.get_user_filter to work with postgres
This commit is contained in:
parent
e5acc8a47b
commit
fc012aa8dc
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue