Fill in the 'default' field for user-defined push rules (#6639)

Signed-off-by: Karl Linderhed <git@karlinde.se>
This commit is contained in:
Karlinde
2020-03-31 15:08:56 +01:00
committed by GitHub
parent b994e86e35
commit fe1580bfd9
2 changed files with 2 additions and 0 deletions
+1
View 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