diff options
Diffstat (limited to 'ext/bg/js/search.js')
-rw-r--r-- | ext/bg/js/search.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index 2aa6d249..f5b4a671 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -36,7 +36,9 @@ class DisplaySearch extends Display { this._introAnimationTimer = null; this._clipboardMonitorEnabled = false; this._clipboardMonitor = new ClipboardMonitor({ - getClipboard: api.clipboardGet.bind(api) + clipboardReader: { + getText: async () => (await api.clipboardGet()) + } }); this._onKeyDownIgnoreKeys = new Map([ ['ANY_MOD', new Set([ |