Update activity time when reading from socket (#223)

This commit is contained in:
Nicolas Vazquez 2023-01-20 09:35:00 -03:00 committed by GitHub
parent b0c47f4a97
commit 25460f05ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -120,6 +120,7 @@ public class ConsoleProxyNoVncClient implements ConsoleProxyClient {
client.readBytes(bytesArr, nextBytes);
if (nextBytes > 0) {
session.getRemote().sendBytes(ByteBuffer.wrap(bytesArr));
updateFrontEndActivityTime();
}
} else {
b = new byte[100];