From 2d1fd4a48a280b1ab56e405c93fd86eb750a907e Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 20 Oct 2025 20:22:37 -0400 Subject: [PATCH] Remove companions --- .../model/nip51Lists/searchRelays/SearchRelayListState.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip51Lists/searchRelays/SearchRelayListState.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip51Lists/searchRelays/SearchRelayListState.kt index a92fceda0..2f9da2401 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip51Lists/searchRelays/SearchRelayListState.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip51Lists/searchRelays/SearchRelayListState.kt @@ -81,7 +81,7 @@ class SearchRelayListState( .flowOn(Dispatchers.Default) .stateIn( scope, - SharingStarted.Companion.Eagerly, + SharingStarted.Eagerly, emptySet(), ) @@ -89,13 +89,13 @@ class SearchRelayListState( val relayListForSearch = getSearchRelayList() return if (relayListForSearch != null && relayListForSearch.tags.isNotEmpty()) { - SearchRelayListEvent.Companion.updateRelayList( + SearchRelayListEvent.updateRelayList( earlierVersion = relayListForSearch, relays = searchRelays, signer = signer, ) } else { - SearchRelayListEvent.Companion.create( + SearchRelayListEvent.create( relays = searchRelays, signer = signer, )