From a289da89c50ea89a590bc8cf01d25d30db990e82 Mon Sep 17 00:00:00 2001 From: AutumnSpark1226 Date: Mon, 16 Dec 2024 14:44:14 +0100 Subject: [PATCH] fix https://github.com/liamcottle/reticulum-meshchat/issues/26 by removing a break in the MicronParser --- src/frontend/js/MicronParser.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/js/MicronParser.js b/src/frontend/js/MicronParser.js index 857f51c..b3aab7d 100644 --- a/src/frontend/js/MicronParser.js +++ b/src/frontend/js/MicronParser.js @@ -323,7 +323,6 @@ class MicronParser { if (f === '*') { // submit all fields foundAll = true; - break; } else if (f.includes('=')) { // this is a request variable (key=value) const [k, v] = f.split('=');