about summary refs log tree commit diff
path: root/bskyweb/templates/post.html
diff options
context:
space:
mode:
authorJonty Wareing <jonty@jonty.co.uk>2023-07-06 18:12:00 +0100
committerGitHub <noreply@github.com>2023-07-06 12:12:00 -0500
commitf05c2f06d665cb3a9989154fbc82a2b0ea60669a (patch)
tree426e6ab96ba4f6790a5d07249c4bc066a8ecf87e /bskyweb/templates/post.html
parentedb37e2c06ba9c745e4a820a0f5fa334e48bac05 (diff)
downloadvoidsky-f05c2f06d665cb3a9989154fbc82a2b0ea60669a.tar.zst
Fix missing post text in noscript post view (#981)
Diffstat (limited to 'bskyweb/templates/post.html')
-rw-r--r--bskyweb/templates/post.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bskyweb/templates/post.html b/bskyweb/templates/post.html
index 05d62a1c8..25a68c971 100644
--- a/bskyweb/templates/post.html
+++ b/bskyweb/templates/post.html
@@ -43,6 +43,6 @@
   <p id="bsky_display_name">{{ postView.Author.DisplayName }}</p>
   <p id="bsky_handle">{{ postView.Author.Handle }}</p>
   <p id="bsky_did">{{ postView.Author.Did }}</p>
-  <p id="bsky_post_text">{{ postView.Record.Text }}</p>
+  <p id="bsky_post_text">{{ postView.Record.Val.Text }}</p>
 </div>
 {%- endblock %}