зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1229195: ignore messages when content is null. r=Standard8
This commit is contained in:
Родитель
e0ce819ccc
Коммит
5cf46f9471
|
@ -64,6 +64,11 @@ SocialErrorListener = {
|
|||
},
|
||||
|
||||
receiveMessage(message) {
|
||||
if (!content) {
|
||||
Cu.reportError("Message received whilst `content` is null: " + message.name);
|
||||
return;
|
||||
}
|
||||
|
||||
let document = content.document;
|
||||
|
||||
switch (message.name) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче