Zip export still had stringified content.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4291 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2023-05-10 01:52:34 +00:00
parent 1119804fc2
commit 1324afb459

View File

@ -118,7 +118,7 @@ class TfProfileElement extends LitElement {
}
out.timestamp = message.timestamp;
out.hash = message.hash;
out.content = message.content;
out.content = JSON.parse(message.content);
out.signature = message.signature;
return out;
}