Bug 1579374 - Show information when mediacapabilities folder doesn't exist in the profile yet. r=chunmin

When the mediacapabilities folder does not exist catch the exception and print the name of the decoder.

Differential Revision: https://phabricator.services.mozilla.com/D45352

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Alex Chronopoulos 2019-09-11 22:40:48 +00:00
Родитель ed8d1a6d4c
Коммит da226821ef
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -889,6 +889,9 @@ var snapshotFormatters = {
}
$("enumerate-database-result").textContent +=
logs.join("\n") + "\n";
})
.catch(err => {
$("enumerate-database-result").textContent += `${name}:\n`;
});
}