From 1324afb4595ddaf2f613e46a2a306258ec4c210e Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Wed, 10 May 2023 01:52:34 +0000 Subject: [PATCH] Zip export still had stringified content. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4291 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- apps/ssb/tf-profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ssb/tf-profile.js b/apps/ssb/tf-profile.js index 8b671a24..db56efa2 100644 --- a/apps/ssb/tf-profile.js +++ b/apps/ssb/tf-profile.js @@ -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; }