small fix

This commit is contained in:
2025-01-30 21:46:55 +01:00
parent edfffaf061
commit bcded60fbe

View File

@@ -29,7 +29,7 @@ public class ServerConnexion extends Connexion {
} }
public boolean update() { public boolean update() {
if (shouldClose | isClosed()) if (shouldClose || isClosed())
return false; return false;
return this.keepAliveHandler.update(); return this.keepAliveHandler.update();
} }