diff --git a/xpra/net/protocol/socket_handler.py b/xpra/net/protocol/socket_handler.py index 8cfc6438dc..2a44c61671 100644 --- a/xpra/net/protocol/socket_handler.py +++ b/xpra/net/protocol/socket_handler.py @@ -191,7 +191,7 @@ def is_closed(self) -> bool: return self._closed def is_sending_encrypted(self) -> bool: - return bool(self.cipher_out) or self._conn.socktype in ("ssl", "wss", "ssh") + return bool(self.cipher_out) or self._conn.socktype in ("ssl", "wss", "ssh", "quic") def wait_for_io_threads_exit(self, timeout=None) -> bool: io_threads = (self._read_thread, self._write_thread, self._read_parser_thread, self._read_parser_thread)