From 310303ca1a123a77f9bd116af4dc64ad9c3256c5 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sat, 20 Aug 2022 11:17:24 -0400 Subject: Audio download timeout (#2187) * Add support for an idle timeout when downloading audio * Update eslint rules * Pass idleTimeout to the downloader from DisplayAnki * Add anki.downloadTimeout setting * Update tests * Assign _audioDownloadIdleTimeout using settings * Show info about cancelled downloads * Handle Firefox bug * Improve audio errors * Refactor * Move functions to RequestBuilder --- ext/data/schemas/options-schema.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ext/data') diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index d7e3b5f4..37b32bbf 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -878,7 +878,8 @@ "suspendNewCards", "displayTags", "noteGuiMode", - "apiKey" + "apiKey", + "downloadTimeout" ], "properties": { "enable": { @@ -1002,6 +1003,11 @@ "apiKey": { "type": "string", "default": "" + }, + "downloadTimeout": { + "type": "number", + "default": 0, + "minimum": 0 } } }, -- cgit v1.2.3