summaryrefslogtreecommitdiff
path: root/ext/js/comm/frame-endpoint.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/comm/frame-endpoint.js')
-rw-r--r--ext/js/comm/frame-endpoint.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/comm/frame-endpoint.js b/ext/js/comm/frame-endpoint.js
index d2002d2e..69d28a1e 100644
--- a/ext/js/comm/frame-endpoint.js
+++ b/ext/js/comm/frame-endpoint.js
@@ -46,7 +46,7 @@ export class FrameEndpoint {
}
/** @type {import('frame-client').FrameEndpointReadyDetails} */
const details = {secret: this._secret};
- this._api.broadcastTab({action: 'frameEndpointReady', params: details});
+ void this._api.broadcastTab({action: 'frameEndpointReady', params: details});
}
/**
@@ -88,6 +88,6 @@ export class FrameEndpoint {
this._eventListeners.removeAllEventListeners();
/** @type {import('frame-client').FrameEndpointConnectedDetails} */
const details = {secret, token};
- this._api.sendMessageToFrame(hostFrameId, {action: 'frameEndpointConnected', params: details});
+ void this._api.sendMessageToFrame(hostFrameId, {action: 'frameEndpointConnected', params: details});
}
}