diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt index 351878bf9..d17e2a349 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt @@ -908,12 +908,15 @@ class Account( note.relays.associateWith { relay -> listOf( Filter( + kinds = listOf(host.kind), + tags = mapOf("p" to listOf(pubKey)), ids = listOf(host.id), ), ) }, )?.let { downloadedEvent -> - client.send(downloadedEvent, computeRelayListToBroadcast(downloadedEvent)) + val toRelays = computeRelayListToBroadcast(downloadedEvent) + client.send(downloadedEvent, toRelays) } } } else {