Bugfix: Owner of a private photo can see its comment page

This commit is contained in:
Noah Petherbridge 2023-05-16 10:10:37 -07:00
parent ba9e90b32a
commit 17d9760b61

View File

@ -68,7 +68,7 @@ func View() http.HandlerFunc {
// Is this a private photo and are we allowed to see?
isGranted := models.IsPrivateUnlocked(user.ID, currentUser.ID)
if photo.Visibility == models.PhotoPrivate && !isGranted && !currentUser.IsAdmin {
if photo.Visibility == models.PhotoPrivate && !isGranted && !isOwnPhoto && !currentUser.IsAdmin {
templates.NotFoundPage(w, r)
return
}