fix(desktop): sidebar search results no longer show raw >>>term<<< FTS markers - #90357
Merged
Conversation
…S markers The backend's session search wraps matched terms in sqlite snippet() delimiters '>>>'/'<<<' (hermes_state_search.py). The sidebar rendered the snippet as plain text via searchResultToSession(), so searching 'foo' painted rows literally titled '>>>foo<<<'. Strip the markers before the snippet becomes the row preview.
Contributor
૮ >ﻌ< ა ci reviewran on 0f7e12a — fix(desktop): sidebar search results no longer show raw >>>t
|
This was referenced Aug 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Desktop sidebar session-search results no longer render raw FTS highlight markers — searching "MARCO" showed a row literally titled
>>>MARCO<<<.Root cause: the backend's session search wraps matched terms in sqlite
snippet()delimiters>>>/<<<(hermes_state_search.py), andsearchResultToSession()passed the snippet straight into the row preview/title as plain text.Changes
apps/desktop/src/app/chat/sidebar/index.tsx: newstripFtsMarkers()strips the delimiters before the snippet becomes the row preview.strip-fts-markers.test.ts: 4 tests (single term, multiple terms, marker-free, empty).Validation
Found during the full-desktop feature audit (Aug 19).
Infographic