Change MFC websocket URL to the TLS one

This commit is contained in:
0xb00bface 2020-11-08 13:40:10 +01:00
parent 8df1ff72e7
commit 20473f9a23
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class MyFreeCamsClient {
}
String server = websocketServers.get(new Random().nextInt(websocketServers.size() - 1));
String wsUrl = "ws://" + server + ".myfreecams.com:8080/fcsl";
String wsUrl = "wss://" + server + ".myfreecams.com/fcsl";
LOG.debug("Connecting to random websocket server {}", wsUrl);
Thread watchDog = new Thread(() -> {