fix: `serial-port-added` should respect filters (#41635)

fix: serial-port-added should respect filters

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
trop[bot] 2024-03-21 12:57:45 +01:00 коммит произвёл GitHub
Родитель 417e16cedd
Коммит 78ce4c473b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -93,6 +93,9 @@ api::Session* SerialChooserController::GetSession() {
void SerialChooserController::OnPortAdded(
const device::mojom::SerialPortInfo& port) {
if (!FilterMatchesAny(port))
return;
ports_.push_back(port.Clone());
api::Session* session = GetSession();
if (session) {