Fix post page rendering after rel=me changes

Ref T744
This commit is contained in:
Matt Baer 2023-09-22 11:52:14 -04:00
parent 264bef03b1
commit 8626aa12cc

View file

@ -139,6 +139,7 @@ type (
IsPinned bool
IsCustomDomain bool
Monetization string
Verification string
PinnedPosts *[]PublicPost
IsFound bool
IsAdmin bool
@ -1547,6 +1548,7 @@ Are you sure it was ever here?`,
tp.PinnedPosts, _ = app.db.GetPinnedPosts(coll, p.IsOwner)
tp.IsPinned = len(*tp.PinnedPosts) > 0 && PostsContains(tp.PinnedPosts, p)
tp.Monetization = app.db.GetCollectionAttribute(coll.ID, "monetization_pointer")
tp.Verification = coll.Verification
if !postFound {
w.WriteHeader(http.StatusNotFound)