Skip to content

Commit b3baaeb

Browse files
Update see_also field to use dict with 'add' key (#2716)
1 parent 1e7c963 commit b3baaeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bugbot/rules/web_platform_features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def handle_bug(
7272
url for key, url in expected_keys.items() if key not in see_also_keys
7373
]
7474
if add_urls:
75-
changes["see_also"] = bug["see_also"] + add_urls
75+
changes["see_also"] = {"add": add_urls}
7676
data[bug_id]["added"] = add_urls
7777

7878
if changes:

0 commit comments

Comments
 (0)