diff --git a/app2/src/lib/components/UpdateIndicator.svelte b/app2/src/lib/components/UpdateIndicator.svelte index 55ea360..898e8cc 100644 --- a/app2/src/lib/components/UpdateIndicator.svelte +++ b/app2/src/lib/components/UpdateIndicator.svelte @@ -29,6 +29,10 @@ } ); const results = await response.json(); + if (results.message == "Not Found") { + console.error('Error: Could not find releases in the repository'); + return; + } update = false; firmwareVersion = ''; diff --git a/app2/src/lib/components/Visualization.svelte b/app2/src/lib/components/Visualization.svelte index 884cb2c..2852eb2 100644 --- a/app2/src/lib/components/Visualization.svelte +++ b/app2/src/lib/components/Visualization.svelte @@ -1,7 +1,6 @@