This commit is contained in:
Luna 2023-05-26 20:43:47 -03:00
parent ac1a0eb580
commit 48015b5bdb
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ class Storage:
) )
drow["properties"] = {} drow["properties"] = {}
for field in FIELDS_MIRRORED_TO_PROPERTIES: for field in FIELDS_MIRRORED_TO_PROPERTIES:
drow[field] = drow.get(field) drow["properties"][field] = drow.get(field)
return drow return drow