diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt index 4e419ed3d9..c7a7269252 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt @@ -545,7 +545,12 @@ fun ListContent( Column(modifier) { CatalogSection(R.string.drawer_section_navigate, DrawerNavigateItems, accountViewModel, nav) CatalogSection(R.string.drawer_section_you, DrawerYouItems, accountViewModel, nav) - CatalogSection(R.string.drawer_section_feeds, DrawerFeedsItems, accountViewModel, nav) + // Audio rooms are debug-only while the WebTransport audio backend is + // unimplemented (see docs/plans/2026-04-22-pure-kotlin-quic-webtransport-plan.md). + // The Nostr-side of the feature (presence, hand-raise, chat) works, but + // without audio playback the entry is confusing to release-build users. + val feedsItems = if (isDebug) DrawerFeedsItems else DrawerFeedsItems.filter { it != NavBarItem.AUDIO_ROOMS } + CatalogSection(R.string.drawer_section_feeds, feedsItems, accountViewModel, nav) CollapsibleSection(title = R.string.drawer_section_create) { NavigationRow(