We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a03e1 commit 768fdafCopy full SHA for 768fdaf
main.py
@@ -50,9 +50,10 @@ def __init__(self):
50
# Assume this is first time, set the first device found
51
devices = self.backend.get_audio_devices()
52
if len(devices) > 0:
53
- settings[Consts.SETTING_DEVICE] = devices[0]
+ device = devices[0]
54
+ settings[Consts.SETTING_DEVICE] = device
55
self.set_settings(settings)
- self.backend.set_device(devices)
56
+ self.backend.set_device(device)
57
else:
58
log.error("Failed to find a sound device!")
59
0 commit comments