1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

🔈 Improves of audio devices handling (#463)

This commit is contained in:
Franck Nijhof
2018-05-08 14:27:17 +02:00
committed by Pascal Vizeli
parent ac437f809a
commit cddd859f56

View File

@@ -63,6 +63,10 @@ class Hardware:
@property
def audio_devices(self):
"""Return all available audio interfaces."""
if not ASOUND_CARDS.exists():
_LOGGER.info("No audio devices found")
return {}
try:
with ASOUND_CARDS.open('r') as cards_file:
cards = cards_file.read()