GUACAMOLE-221: We need to flush the socket after sending required.

This commit is contained in:
Nick Couchman 2020-08-20 22:11:09 -04:00
parent 26b9850d87
commit ec3cdfd17b

View File

@ -1013,7 +1013,8 @@ int guac_protocol_send_required(guac_socket* socket, const char** required) {
ret_val = guac_socket_write_string(socket, "8.required")
|| guac_socket_write_array(socket, required)
|| guac_socket_write_string(socket, ";");
|| guac_socket_write_string(socket, ";")
|| guac_socket_flush(socket);
guac_socket_instruction_end(socket);