Skip to content

Commit f90e2d5

Browse files
fixed audio source crashing if no device is available
1 parent 993bf91 commit f90e2d5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

source_modules/audio_source/src/main.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,9 @@ class AudioSourceModule : public ModuleManager::Instance {
183183
static void start(void* ctx) {
184184
AudioSourceModule* _this = (AudioSourceModule*)ctx;
185185
if (_this->running) { return; }
186+
187+
// If no device is selected, give up
188+
if (_this->selectedDevice.empty()) { return; }
186189

187190
// Stream options
188191
RtAudio::StreamParameters parameters;

0 commit comments

Comments
 (0)