Skip to content

Commit a5a8362

Browse files
committed
Fix: Fixed data processor event handling.
1 parent a28c724 commit a5a8362

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/arc-electron.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278
tap: '_handleLinks',
279279
'content-copy': '_copyContentHandler',
280280
'google-autorize': '_googleOauthTokenRequested',
281-
'on-process-incoming-data': '_processIcomingData',
281+
'process-incoming-data': '_processIcomingDataHandler',
282282
'pick-google-drive-item': 'openDrivePicker',
283283
'open-drive-selector': 'openDrivePicker',
284284
'settings-changed': '_settingChanged',
@@ -469,6 +469,10 @@
469469
return false;
470470
},
471471

472+
_processIcomingDataHandler: function(e) {
473+
this._processIcomingData(e.detail.data);
474+
},
475+
472476
_processIcomingData: function(data, opts) {
473477
if (!data) {
474478
return;

0 commit comments

Comments
 (0)