Merge pull request #17 from cjkas/cjkas/fix-bkp

Fix bkp bug
This commit is contained in:
cjkas 2026-04-04 10:42:12 +02:00 committed by GitHub
commit 73685d8f0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2115,8 +2115,10 @@ void Web::begin() {
AsyncJsonResp resp;
resp.beginResponse(request, g_async_content, sizeof(g_async_content));
resp.beginObject();
resp.beginObject("config");
serializeTransceiverConfig(resp);
resp.endObject();
resp.endObject();
resp.endResponse();
}));