Skip to content

Commit 7ad7924

Browse files
WaleyChenrueckstiess
authored andcommitted
INT-677 remove extra arg
1 parent 75e8597 commit 7ad7924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,9 @@ app.extend({
287287
sendMessage: function(msg, arg1) {
288288
ipc.send('message', msg, arg1);
289289
},
290-
onMessageReceived: function(msg, arg1) {
290+
onMessageReceived: function(msg) {
291291
debug('message received from main process:', msg);
292-
this.trigger(msg, arg1);
292+
this.trigger(msg);
293293
},
294294
metrics: metrics,
295295
init: function() {

0 commit comments

Comments
 (0)