feature/shuffle-sort #30

Merged
cameron merged 21 commits from feature/shuffle-sort into master 2024-12-06 16:25:44 +00:00
Showing only changes of commit 9327208deb - Show all commits

View File

@@ -67,12 +67,6 @@ pub async fn list_photos<TagD: TagDao, FS: FileSystemAccess>(
"Failed to get files with tag_ids: {:?} with filter_mode: {:?}",
tag_ids, filter_mode
))
.map(|files| {
files
.into_iter()
.filter(|file_path| file_path.starts_with(search_path))
.collect()
})
.map(|tagged_files: Vec<String>| {
trace!("Found {:?} tagged files: {:?}", tagged_files.len(), tagged_files);