Split out of #966 / PR #971.
The album search box above a shared space's album list filters on different fields per platform:
- Web (
web/src/lib/components/spaces/space-albums-list.svelte:49) matches album name or description
- Mobile (
mobile/lib/pages/library/spaces/collection_sort.dart:42, _matches) matches the name only
So a query that matches only an album's description finds the album on web and finds nothing on mobile.
Both are case-insensitive, trimmed, literal-substring, with no diacritic folding — only the field set differs.
#966 was scoped to the sort options and left this alone deliberately; recording it so the divergence is tracked rather than rediscovered.
Split out of #966 / PR #971.
The album search box above a shared space's album list filters on different fields per platform:
web/src/lib/components/spaces/space-albums-list.svelte:49) matches album name or descriptionmobile/lib/pages/library/spaces/collection_sort.dart:42,_matches) matches the name onlySo a query that matches only an album's description finds the album on web and finds nothing on mobile.
Both are case-insensitive, trimmed, literal-substring, with no diacritic folding — only the field set differs.
#966 was scoped to the sort options and left this alone deliberately; recording it so the divergence is tracked rather than rediscovered.