fix(aurora): fixed aurora importer

This commit is contained in:
Seaswimmer 2023-12-28 04:51:16 -05:00
parent 3087afa1d2
commit 9cc0cae53b
Signed by untrusted user: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -66,7 +66,7 @@ class ImportAuroraView(ui.View):
if "metadata" not in case:
metadata = {}
else:
metadata: Dict[str, any] = case["metadata"]
metadata: Dict[str, any] = json.loads(case["metadata"])
if not metadata['imported_from']:
metadata.update({
'imported_from': 'Aurora'