From 4647035b0050ecea5c0331dec8e0ba15bae14409 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 6 May 2018 09:44:58 +0200 Subject: [PATCH] Bugfix Websession --- hassio/api/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/api/proxy.py b/hassio/api/proxy.py index 89336ce53..a6e32e87b 100644 --- a/hassio/api/proxy.py +++ b/hassio/api/proxy.py @@ -34,7 +34,7 @@ class APIProxy(CoreSysAttributes): try: data = None headers = {} - method = getattr(self._websession_ssl, request.method.lower()) + method = getattr(self.sys_websession_ssl, request.method.lower()) params = request.query or None # read data