fix(aurora): fixed aurora importer
This commit is contained in:
parent
3087afa1d2
commit
9cc0cae53b
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ class ImportAuroraView(ui.View):
|
||||||
if "metadata" not in case:
|
if "metadata" not in case:
|
||||||
metadata = {}
|
metadata = {}
|
||||||
else:
|
else:
|
||||||
metadata: Dict[str, any] = case["metadata"]
|
metadata: Dict[str, any] = json.loads(case["metadata"])
|
||||||
if not metadata['imported_from']:
|
if not metadata['imported_from']:
|
||||||
metadata.update({
|
metadata.update({
|
||||||
'imported_from': 'Aurora'
|
'imported_from': 'Aurora'
|
||||||
|
|
Loading…
Reference in a new issue