diff --git a/src/routes/EditActions.svelte b/src/routes/EditActions.svelte index 0f9d7909..39cc4f6f 100644 --- a/src/routes/EditActions.svelte +++ b/src/routes/EditActions.svelte @@ -75,10 +75,13 @@ } for (const [id, setting] of $overlay.settings) { - await port.setSetting(id, setting) + try { + await port.setSetting(id, setting) + } catch (e) { + console.log("Skipping invalid ID", e) + } } - // Yes, this is a completely arbitrary and unnecessary delay. // The only purpose of it is to create a sense of weight, // aka make it more "energy intensive" to click.