respond with null to avoid "port closed" errors
This commit is contained in:
parent
ad44fe47c8
commit
32728b023b
|
@ -296,8 +296,8 @@ function onRuntimeMessage(msg, sender) {
|
|||
if (!fn) {
|
||||
throw new Error(`unknown API: ${msg.name}`);
|
||||
}
|
||||
const context = {msg, sender};
|
||||
return fn.apply(context, msg.args);
|
||||
const res = fn.apply({msg, sender}, msg.args);
|
||||
return res === undefined ? null : res;
|
||||
}
|
||||
|
||||
function openEditor(params) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user