diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-30 12:33:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 12:33:29 -0500 |
commit | d0b8b605db93c51b5ce2501a482c57432b45bfa6 (patch) | |
tree | c42bf4f59d7945c8b9c42cd0677e3827d326a71a /ext/bg/js/clipboard-reader.js | |
parent | af6e9a8153c24d0400592005b31d56fecff67068 (diff) |
Add note errors (#1329)
* Update _addAnkiNote to track errors
* Change comparison
* Update anki note adding to show errors
* Fix template
* Show errors when Anki card creation behaves unexpectedly
* Update some errors related to anki media injection
* Update addAnkiNote error handling
* Improve Anki errors
* Simplify error messages related to template rendering
Diffstat (limited to 'ext/bg/js/clipboard-reader.js')
-rw-r--r-- | ext/bg/js/clipboard-reader.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/clipboard-reader.js b/ext/bg/js/clipboard-reader.js index 8065cb16..ae432246 100644 --- a/ext/bg/js/clipboard-reader.js +++ b/ext/bg/js/clipboard-reader.js @@ -73,7 +73,7 @@ class ClipboardReader { const document = this._document; if (document === null) { - throw new Error('Not supported'); + throw new Error('Clipboard reading not supported in this context'); } let target = this._pasteTarget; @@ -118,7 +118,7 @@ class ClipboardReader { const document = this._document; if (document === null) { - throw new Error('Not supported'); + throw new Error('Clipboard reading not supported in this context'); } let target = this._imagePasteTarget; |