Network and Frontend #10

Merged
lgc merged 29 commits from ole into main 2024-12-03 12:13:28 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit addf542300 - Show all commits

View File

@ -36,7 +36,7 @@ public class AsyncSocket {
String message = this.in.readLine();
if (message.length() <= 0) continue;
// TODO: remove \r\n
message = message.strip();
this.handler.receive(message);
} catch (IOException e) {
e.printStackTrace();