@silverpill it just does another retrieval of the post by ID, in case there are any changes that weren't immediately returned or for whatever reason the displayed post isn't up to date, so I figured that's a good place to throw in load-replies (first part is just mitra)
public func refresh(_ post: Post) async throws -> Post {
if supportsLoadConversation {
try await loadConversation(of: post)
}
let post = try await client.refresh(post)
addAccounts(post)
return post
}