Fixed crash when starting with no source

This commit is contained in:
Ryzerth 2020-07-20 18:18:08 +02:00
parent 1a42421d92
commit e364ebac6d

View File

@ -18,6 +18,9 @@ namespace io {
}
void start() {
if (devList.size() == 0) {
return;
}
if (running) {
return;
}