From c19f27afc12e22401e9e5fe890e46cd72fd05f68 Mon Sep 17 00:00:00 2001 From: MrDave Date: Tue, 14 Apr 2026 09:59:23 -0700 Subject: [PATCH] Change response to POST requests --- src/webu_post.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/webu_post.cpp b/src/webu_post.cpp index d64ae026..a27058ec 100644 --- a/src/webu_post.cpp +++ b/src/webu_post.cpp @@ -954,10 +954,14 @@ mhdrslt cls_webu_post::processor_start(const char *upload_data, size_t *upload_d pthread_mutex_lock(&app->mutex_post); process_actions(); pthread_mutex_unlock(&app->mutex_post); - /* Send updated page back to user */ - webu_html = new cls_webu_html(webua); - webu_html->main(); - delete webu_html; + webua->resp_page = + "\n" + "\n" + "\n" + "

OK

\n" + "\n" + "\n"; + webua->mhd_send(); retcd = MHD_YES; } return retcd;