WIP: Moderation type registry #26

Closed
cswimr wants to merge 146 commits from aurora-3rd-party into main
Showing only changes of commit 6745f0a486 - Show all commits

View file

@ -72,6 +72,10 @@ class ImportAuroraView(ui.View):
if "changes" not in case or not case["changes"]:
case["changes"] = []
else:
case["changes"] = json.loads(case["changes"])
if isinstance(case["changes"], str):
case["changes"] = json.loads(case["changes"])
if "metadata" not in case:
metadata = {}