From ebc682da2d01f3ddf412040eb4a2614b286be730 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sat, 8 Feb 2025 16:59:32 -0500 Subject: [PATCH] chore: update error page --- static/check_update.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/check_update.js b/static/check_update.js index b747203..4cd745b 100644 --- a/static/check_update.js +++ b/static/check_update.js @@ -33,7 +33,7 @@ async function checkInstanceUpdateStatus() { document.getElementById('update-status').innerText = statusMessage; } catch (error) { console.error('Error fetching commits:', error); - document.getElementById('update-status').innerText = '⚠️ Error checking update status.'; + document.getElementById('update-status').innerText = '⚠️ Error checking update status: ' + error; } } @@ -48,7 +48,7 @@ async function checkOtherInstances() { document.getElementById('random-instance').innerText = "Visit Random Instance"; } catch (error) { console.error('Error fetching instances:', error); - document.getElementById('update-status').innerText = '⚠️ Error checking update status.'; + document.getElementById('update-status').innerText = '⚠️ Error checking other instances: ' + error; } }