diff options
Diffstat (limited to 'ext/js/background/offscreen.js')
-rw-r--r-- | ext/js/background/offscreen.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/js/background/offscreen.js b/ext/js/background/offscreen.js index bcbcda6b..d1cf3384 100644 --- a/ext/js/background/offscreen.js +++ b/ext/js/background/offscreen.js @@ -68,13 +68,15 @@ export class Offscreen { ])); /* eslint-enable no-multi-spaces */ - const onMessage = this._onMessage.bind(this); - chrome.runtime.onMessage.addListener(onMessage); - /** @type {?Promise<void>} */ this._prepareDatabasePromise = null; } + /** */ + prepare() { + chrome.runtime.onMessage.addListener(this._onMessage.bind(this)); + } + /** @type {import('offscreen').MessageHandler<'clipboardGetTextOffscreen', true>} */ async _getTextHandler({useRichText}) { return await this._clipboardReader.getText(useRichText); |