Remove unnecessary stop of the input audio stream after error notifications

This commit is contained in:
Bill Somerville 2020-09-26 21:07:35 +01:00
parent f12f481955
commit e8808ebc54
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 0 additions and 4 deletions

View File

@ -37,10 +37,6 @@ bool SoundInput::checkStream ()
result = true;
break;
}
if (!result)
{
stop ();
}
}
return result;
}