From 575302db57a3f63b9ae142323687046561bf776d Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Fri, 15 May 2026 18:10:30 +0700 Subject: [PATCH] fix: report backlog sync errors in dashboard --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 74b72d7..00ac223 100644 --- a/public/index.html +++ b/public/index.html @@ -130,7 +130,7 @@ await apiRequest('/api/backlog-sync', { method: 'POST', body: JSON.stringify({ guildId: state.selectedTextGuild, channelId: state.selectedTextChannel }), - }).catch((error) => logger.warn('Backlog sync failed:', error.message)); + }).catch((error) => showError(`Backlog sync failed: ${error.message}`)); } await fetchText().catch((error) => showError(error.message)); }