From b28241dbf23b627e252348aa0445e4e7befe01fc Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 6 Sep 2020 14:36:43 -0400 Subject: Fix error handling for screenshot captures (#777) --- ext/mixed/js/display.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ext/mixed/js') diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index ce7a4385..4c058948 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -1049,9 +1049,11 @@ class Display extends EventDispatcher { const details = {}; if (this._noteUsesScreenshot(mode)) { - const screenshot = await this._getScreenshot(); - if (screenshot) { + try { + const screenshot = await this._getScreenshot(); details.screenshot = screenshot; + } catch (e) { + // NOP } } @@ -1155,7 +1157,6 @@ class Display extends EventDispatcher { const {format, quality} = this._options.anki.screenshot; const dataUrl = await api.screenshotGet({format, quality}); - if (!dataUrl || dataUrl.error) { return; } return {dataUrl, format}; } finally { -- cgit v1.2.3