Skip to content

Commit

Permalink
Fix websocket port debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Jul 16, 2024
1 parent d711f10 commit 291200f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qz/ws/WebsocketPorts.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ public static WebsocketPorts fromList(List<Integer> secure, List<Integer> insecu
fallback = true;
}
if(fallback) {
log.warn("Falling back to default WebSocket ports: ({}), ({})", secure, insecure);
secure = Arrays.asList(Constants.DEFAULT_WSS_PORTS);
insecure = Arrays.asList(Constants.DEFAULT_WS_PORTS);
log.warn("Falling back to default WebSocket ports: ({}), ({})", secure, insecure);
}

return new WebsocketPorts(Collections.unmodifiableList(secure), Collections.unmodifiableList(insecure));
Expand Down

0 comments on commit 291200f

Please sign in to comment.