e -> error
This commit is contained in:
parent
b1f679ff6d
commit
16b4b58de1
2 changed files with 2 additions and 2 deletions
|
@ -200,7 +200,7 @@ var callFunction = function(event, func, caller, args) {
|
|||
// them with the function name so it's easier to trace things like
|
||||
// `Error processing argument -1.`
|
||||
funcName = (ref = func.name) != null ? ref : "anonymous";
|
||||
throw new Error("Could not call remote function `" + funcName + "`. Check that the function signature is correct. Underlying error: " + e.message);
|
||||
throw new Error("Could not call remote function `" + funcName + "`. Check that the function signature is correct. Underlying error: " + error.message);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ process.atomBinding = function(name) {
|
|||
try {
|
||||
return process.binding("atom_" + process.type + "_" + name);
|
||||
} catch (error) {
|
||||
if (/No such module/.test(e.message)) {
|
||||
if (/No such module/.test(error.message)) {
|
||||
return process.binding("atom_common_" + name);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue