Bug 1711001 - [devtools] Fix intermittent failures in browser_console_error_source_click.js. r=bomsy.

Differential Revision: https://phabricator.services.mozilla.com/D115183
This commit is contained in:
Nicolas Chevobbe 2021-05-17 08:36:30 +00:00
Родитель 249be2b40e
Коммит 38e52dd665
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -75,7 +75,7 @@ function TargetMixin(parentClass) {
}
on(eventName, listener) {
if (this._offResourceEvent.has(eventName)) {
if (this._offResourceEvent && this._offResourceEvent.has(eventName)) {
// If a callsite sets an event listener for resource-(available|update)-form:
// we want to remove the listener we set here in the constructor…