From 2c66b1bf4076ebddf264766626ec12be127e6ca4 Mon Sep 17 00:00:00 2001 From: jknapp Date: Fri, 7 Mar 2025 19:13:41 -0800 Subject: [PATCH] fix method to GET instead of POST --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 2f2af9b..645c4c5 100644 --- a/templates/index.html +++ b/templates/index.html @@ -286,7 +286,7 @@ async function regenerateConfig() { try { const response = await fetch('/api/regenerate', { - method: 'POST', + method: 'GET', headers: { 'Content-Type': 'application/json', }