Bustage fix for bug 561480 to check typeof == undefined instead of == null.
--HG-- extra : rebase_source : 281817a091523853341168c117be30862deba6ad
This commit is contained in:
Родитель
40454136f7
Коммит
84aec503e2
|
@ -1123,7 +1123,7 @@ WeaveCrypto.prototype = {
|
|||
}
|
||||
};
|
||||
|
||||
let component = Services == null || ctypes == null ? [] : [WeaveCrypto];
|
||||
let component = typeof Services == "undefined" || typeof ctypes == "undefined" ? [] : [WeaveCrypto];
|
||||
function NSGetModule (compMgr, fileSpec) {
|
||||
return XPCOMUtils.generateModule(component);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче