mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-09 08:04:45 +00:00
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