зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1110572 - Check the existance of a listener in this._listeners. r=edgar
This commit is contained in:
Родитель
30195c7bb8
Коммит
d18762333c
|
@ -558,7 +558,7 @@ MobileConnectionProvider.prototype = {
|
|||
deliverListenerEvent: function(aName, aArgs) {
|
||||
let listeners = this._listeners.slice();
|
||||
for (let listener of listeners) {
|
||||
if (listeners.indexOf(listener) === -1) {
|
||||
if (this._listeners.indexOf(listener) === -1) {
|
||||
continue;
|
||||
}
|
||||
let handler = listener[aName];
|
||||
|
|
Загрузка…
Ссылка в новой задаче