Minor fix to proxying requests. Finally preserves state and proxies all requests when enabled.

This commit is contained in:
kohlerpop1
2025-12-28 22:12:30 -05:00
parent 3f00256634
commit 95e352908d
3 changed files with 30 additions and 14 deletions

View File

@@ -95,6 +95,9 @@ public class ProxyClientSettings implements Iterator<ProxyData>, Iterable<ProxyD
public ProxyClientSettings clone() {
ProxyClientSettings settings = new ProxyClientSettings();
settings.setEnabled(enabled);
settings.setAutoDiscard(autoDiscard);
settings.setFallback(fallback);
settings.setAllowWebsocket(allowWebsocket);
settings.setRotation(rotation);
settings.setIndex(index);
settings.setType(type);