diff --git a/homeassistant/components/remote/harmony.py b/homeassistant/components/remote/harmony.py index 165bd0b9114..cdc6a7ac61f 100755 --- a/homeassistant/components/remote/harmony.py +++ b/homeassistant/components/remote/harmony.py @@ -174,7 +174,7 @@ class HarmonyRemote(remote.RemoteDevice): @property def is_on(self): """Return False if PowerOff is the current activity, otherwise True.""" - return self._current_activity != 'PowerOff' + return self._current_activity not in [None, 'PowerOff'] def update(self): """Return current activity."""