forked from MirrorHub/synapse
Fill in the 'default' field for user-defined push rules (#6639)
Signed-off-by: Karl Linderhed <git@karlinde.se>
This commit is contained in:
parent
b994e86e35
commit
fe1580bfd9
2 changed files with 2 additions and 0 deletions
1
changelog.d/6639.bugfix
Normal file
1
changelog.d/6639.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix missing field `default` when fetching user-defined push rules.
|
|
@ -41,6 +41,7 @@ def _load_rules(rawrules, enabled_map):
|
|||
rule = dict(rawrule)
|
||||
rule["conditions"] = json.loads(rawrule["conditions"])
|
||||
rule["actions"] = json.loads(rawrule["actions"])
|
||||
rule["default"] = False
|
||||
ruleslist.append(rule)
|
||||
|
||||
# We're going to be mutating this a lot, so do a deep copy
|
||||
|
|
Loading…
Reference in a new issue