diff --git a/homeassistant/components/yamaha_musiccast/select.py b/homeassistant/components/yamaha_musiccast/select.py index d64682c8eb4..d57d1c07f68 100644 --- a/homeassistant/components/yamaha_musiccast/select.py +++ b/homeassistant/components/yamaha_musiccast/select.py @@ -59,4 +59,4 @@ class SelectableCapapility(MusicCastCapabilityEntity, SelectEntity): @property def current_option(self): """Return the currently selected option.""" - return self.capability.options[self.capability.current] + return self.capability.options.get(self.capability.current)