SiebRad

Results 2 comments of SiebRad

Same problem in my Hass. The problem looks like easy to fix. I wanted to make pull request but I cannot find the file getpassword.py on Hass github.

This is my best guess how to fix the issue. Correct function get_socket below. ``` def _get_socket(): server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server_socket.settimeout(10) ssl_context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH) ssl_context.options |= ssl.OP_LEGACY_SERVER_CONNECT ssl_socket =...