Bug 960619 - part 2 - don't pretend to return a value from notifyObserversInParentProcess; r=jmaher

This commit is contained in:
Nathan Froyd 2014-01-16 09:36:14 -05:00
Родитель 07e57f2e24
Коммит 6033138365
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1679,7 +1679,8 @@ SpecialPowersAPI.prototype = {
throw new Error("Can't send subject to another process!");
}
if (this.isMainProcess()) {
return this.notifyObservers(subject, topic, data);
this.notifyObservers(subject, topic, data);
return;
}
var msg = {
'op': 'notify',