Refactors the name of the simple relay client

This commit is contained in:
Vitor Pamplona
2025-07-09 08:36:50 -04:00
parent cc02806390
commit b12e675b3a
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ import com.vitorpamplona.quartz.nip01Core.relay.client.single.IRelayClient
import com.vitorpamplona.quartz.nip42RelayAuth.RelayAuthEvent
import com.vitorpamplona.quartz.utils.LargeCache
class OutboxProtector(
class OutboxCache(
listener: IRelayClientListener,
) : RedirectRelayClientListener(listener) {
/**

View File

@@ -40,7 +40,7 @@ class SimpleRelayClient(
) : IRelayClient by BasicRelayClient(
url,
socketBuilder,
OutboxProtector(listener),
OutboxCache(listener),
stats,
defaultOnConnect,
)