Search: Group stacked files with same diff when sorting by similarity.
Diff is a perceptual differential hash. Grouping by photo ID should prevent stacks of related files from being split in search results. Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
parent
5d26bada42
commit
7197d6b651
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ func searchPhotos(f form.SearchPhotos, sess *entity.Session, resultCols string)
|
|||
s = s.Order("files.photo_taken_at, files.media_id")
|
||||
case sortby.Similar:
|
||||
s = s.Where("files.file_diff > 0")
|
||||
s = s.Order("photos.photo_color, photos.cell_id, files.file_diff, files.time_index")
|
||||
s = s.Order("photos.photo_color, photos.cell_id, files.file_diff, files.photo_id, files.time_index")
|
||||
case sortby.Name:
|
||||
s = s.Order("photos.photo_path, photos.photo_name, files.time_index")
|
||||
case sortby.Random:
|
||||
|
|
Loading…
Reference in a new issue