From facd0c09ba0877991a5c7d38ad48db21e64b8497 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 22 Jan 2020 13:26:51 -0500 Subject: [PATCH] return True if display light status not supported --- wideq/ac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wideq/ac.py b/wideq/ac.py index 790c5f5..b2d6128 100644 --- a/wideq/ac.py +++ b/wideq/ac.py @@ -268,7 +268,7 @@ class ACDevice(Device): value = self._get_control('DisplayControl') return value == '0' # Seems backwards, but isn't. except FailedRequestError: - return 0 # Device does not support reporting display light status + return True # Device does not support reporting display light status (so it must be on) def get_volume(self): """Get the speaker volume level."""