Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions denonavr/denonavr.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,13 @@ def _update_avr_2016(self):
"Input function list for Denon receiver at host %s "
"could not be updated."), self._host)

# Now playing information is not implemented for 2016+ models, because
# a HEOS API query needed. So only sync the power state for now.
if self._power == POWER_ON:
self._state = STATE_ON
else:
self._state = STATE_OFF

return True

def _update_input_func_list(self):
Expand Down