Skip to content

v2.3.1 - Search Fix

Choose a tag to compare

@codewithkenzo codewithkenzo released this 04 Jan 05:19
· 24 commits to main since this release

🔍 Search Fix

Fixed multi-word search queries not finding results.

Bug

pplx -l "my learning" returned nothing because FTS5 required ALL words to match.

Fix

Search now uses OR with prefix matching:

  • "my learning" → my* OR learning*
  • Matches documents containing either word

Full Changelog: v2.3.0...v2.3.1