Skip to content

Commit

Permalink
Correct WebSocket client URI
Browse files Browse the repository at this point in the history
  • Loading branch information
L1shed committed Jul 10, 2024
1 parent 1a6ef1c commit ac5bb85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/keystrokesmod/backend/IRCClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class IRCClient {

public static void connect() {
try {
WebSocketClient client = new WebSocketClient(new URI("ws://localhost:8080/irc")) {
WebSocketClient client = new WebSocketClient(new URI("ws://improved-happiness-v9x7wj9wq962x46g.github.dev/irc")) {

@Override
public void onOpen(ServerHandshake handshakedata) {
Expand Down

0 comments on commit ac5bb85

Please sign in to comment.