Index: lib/messaging.js |
diff --git a/lib/messaging.js b/lib/messaging.js |
index 4e8f3237b546fb5bbb9de02b5f8c9ef9438b3d8d..5c98992eadf74d2e5c8028eb2b0194e2915a506b 100644 |
--- a/lib/messaging.js |
+++ b/lib/messaging.js |
@@ -31,7 +31,7 @@ function Port() |
this._eventEmitter = new EventEmitter(); |
this._onMessage = this._onMessage.bind(this); |
ext.onMessage.addListener(this._onMessage); |
-}; |
+} |
Port.prototype = { |
_onMessage(message, sender, sendResponse) |
@@ -47,7 +47,8 @@ Port.prototype = { |
{ |
response.then( |
sendResponse, |
- reason => { |
+ reason => |
+ { |
console.error(reason); |
sendResponse(undefined); |
} |