merge-requests/30/head
Bob Mottram 2024-02-15 21:10:43 +00:00
parent a1202778ad
commit 292bf99f66
1 changed files with 2 additions and 1 deletions

View File

@ -13247,7 +13247,8 @@ class PubServer(BaseHTTPRequestHandler):
if not authorized:
pjo = post_json_object
if not is_public_post(pjo):
self._404(72)
# only public posts may be viewed by unauthorized viewers
self._401()
self.server.getreq_busy = False
return True
remove_post_interactions(pjo, True)