diff --git a/internal/form/search_photos.go b/internal/form/search_photos.go index 4eb1a69b0..786bd1518 100644 --- a/internal/form/search_photos.go +++ b/internal/form/search_photos.go @@ -46,7 +46,7 @@ type SearchPhotos struct { Square bool `form:"square" notes:"Finds square pictures only (aspect ratio 1:1)"` Archived bool `form:"archived" notes:"Finds archived content"` Public bool `form:"public" notes:"Excludes private content"` - Private bool `form:"private" notes:"Finds private content"` + Private bool `form:"private" notes:"Finds private content only (except when public:true)"` Review bool `form:"review" notes:"Finds content in review"` Error bool `form:"error" notes:"Finds content with errors"` Hidden bool `form:"hidden" notes:"Finds hidden content (broken or unsupported)"` diff --git a/internal/form/search_photos_geo.go b/internal/form/search_photos_geo.go index d1e1d5a7a..bbe3a4624 100644 --- a/internal/form/search_photos_geo.go +++ b/internal/form/search_photos_geo.go @@ -47,7 +47,7 @@ type SearchPhotosGeo struct { Square bool `form:"square" notes:"Finds square pictures only (aspect ratio 1:1)"` Archived bool `form:"archived" notes:"Finds archived content"` Public bool `form:"public" notes:"Excludes private content"` - Private bool `form:"private" notes:"Finds private content"` + Private bool `form:"private" notes:"Finds private content only (except when public:true)"` Review bool `form:"review" notes:"Finds content in review"` Quality int `form:"quality" notes:"Minimum quality score (1-7)"` Face string `form:"face" notes:"Find pictures with a specific face ID, you can also specify yes, no, new, or a face type"`