From bf94d0d91cdba4729576b9bf06db87404f9daa00 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Tue, 21 Oct 2025 19:09:58 -0400 Subject: [PATCH] For reports, only use the outbox relay if the user has it. (don't use our default bootstrapping relays) --- .../reqCommand/user/watchers/UserReportsSubAssembler.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/relayClient/reqCommand/user/watchers/UserReportsSubAssembler.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/relayClient/reqCommand/user/watchers/UserReportsSubAssembler.kt index 0ef0244ee..651077a71 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/relayClient/reqCommand/user/watchers/UserReportsSubAssembler.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/relayClient/reqCommand/user/watchers/UserReportsSubAssembler.kt @@ -69,7 +69,7 @@ class UserReportsSubAssembler( val trustedAccounts = mapOfSet { - accounts.map { it.followsPerRelay.value }.forEach { + accounts.map { it.declaredFollowsPerRelay.value }.forEach { add(it) } }