diff --git a/honk.go b/honk.go index 8fb6379..2a48bff 100644 --- a/honk.go +++ b/honk.go @@ -598,8 +598,11 @@ func showhonk(w http.ResponseWriter, r *http.Request) { return } u := login.GetUserInfo(r) + if u != nil && u.UserID != user.ID { + u = nil + } if !h.Public { - if u == nil || u.UserID != h.UserID { + if u == nil { http.NotFound(w, r) return