Update ws to wss

This commit is contained in:
UnfamiliarLegacy 2024-06-01 18:46:13 +02:00
parent 776d16ed49
commit 1fe7bb22e6

View File

@ -126,7 +126,7 @@ public class NitroProxyProvider implements ProxyProvider, NitroHttpProxyServerCa
public String replaceWebsocketServer(String configUrl, String websocketUrl) {
originalWebsocketUrl = websocketUrl;
return String.format("ws://127.0.0.1:%d", websocketPort);
return String.format("wss://127.0.0.1:%d", websocketPort);
}
@Override