Files
amethyst/desktopApp
mstrofnone d4cc4c67de fix(desktop): resolve Namecoin names in the home tab search bar
The home tab inline search bar in FeedScreen.kt previously ignored
Namecoin identifiers (e.g. mstrofnone.bit) — only the full Search screen
resolved them via LocalNamecoinService. Users typing a .bit name into
the home search pill saw 'no results found' instead of the resolved
profile.

This wires the same Namecoin resolution pattern used by SearchScreen.kt
into FeedTabsHeader:

- Detect Namecoin identifiers with NamecoinNameResolver.isNamecoinIdentifier
- Resolve via LocalNamecoinService.resolveDetailed (cancelling stale lookups
  when the user keeps typing)
- Render a compact InlineNamecoinResultRow above the regular search results
  showing Loading / Resolved / NotFound / Error states
- Clicking the resolved row navigates to the user profile, matching the
  full Search screen behaviour
2026-06-26 10:58:44 +10:00
..