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

Signed-off-by: Karl Linderhed <git@karlinde.se>
pull/7192/head
Karlinde 2020-03-31 16:08:56 +02:00 committed by GitHub
parent b994e86e35
commit fe1580bfd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
changelog.d/6639.bugfix Normal file
View File

@ -0,0 +1 @@
Fix missing field `default` when fetching user-defined push rules.

View File

@ -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