Skip to content

Commit

Permalink
Bug 1579374 - Show information when mediacapabilities folder doesn't …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
achronop committed Sep 11, 2019
1 parent ed8d1a6 commit da22682
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions toolkit/content/aboutSupport.js
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,9 @@ var snapshotFormatters = {
}
$("enumerate-database-result").textContent +=
logs.join("\n") + "\n";
})
.catch(err => {
$("enumerate-database-result").textContent += `${name}:\n`;
});
}

Expand Down

0 comments on commit da22682

Please sign in to comment.