Logged out metadata on posts and profiles is currently broken #975
Open
Description
Describe the bug
Logged out metadata about posts and profiles is currently broken.
The main page tags exist but are empty. The meta tags are missing due to postView being null.
To Reproduce
Steps to reproduce the behavior:
curl https://bsky.app/profile/bsky.app/post/3jzpikdls2z23 | grep bsky_
<p id="bsky_display_name"></p>
<p id="bsky_handle"></p>
<p id="bsky_did"></p>
<p id="bsky_post_text"></p>
curl https://bsky.app/profile/bsky.app | grep bsky_
<p id="bsky_display_name"></p>
<p id="bsky_handle"></p>
<p id="bsky_did"></p>
<p id="bsky_profile_description"></p>
Expected behavior
The tags are populated, and the <meta>
tags are added to the page and populated.
Additional context
I suspect this may be due to the Go server in production having expired API credentials, so is unable to fetch the post/profile data.