Fixes miscaching flows of the relay lists from follows.

This commit is contained in:
Vitor Pamplona
2024-08-14 18:03:25 -04:00
parent 6b193894bd
commit 7478899388
2 changed files with 69 additions and 37 deletions

View File

@@ -20,14 +20,15 @@
*/
package com.vitorpamplona.ammolite.relays.filters
import com.vitorpamplona.quartz.encoders.HexKey
import com.vitorpamplona.quartz.events.Event
/**
* This is a nostr filter with per-relay authors list and since parameters
*/
class SinceAuthorPerRelayFilter(
val ids: List<String>? = null,
val authors: Map<String, List<String>>? = null,
val ids: List<HexKey>? = null,
val authors: Map<String, List<HexKey>>? = null,
val kinds: List<Int>? = null,
val tags: Map<String, List<String>>? = null,
val since: Map<String, EOSETime>? = null,