mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-05 02:39:57 +02:00
Fix white blank webpage bug
This commit is contained in:
parent
bcaf3ab5b4
commit
e1eff7c09c
3 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
#include "../../datalayer/datalayer.h"
|
||||
|
||||
String cellmonitor_processor(const String& var) {
|
||||
if (var == "ABC") {
|
||||
if (var == "X") {
|
||||
String content = "";
|
||||
// Page format
|
||||
content += "<style>";
|
||||
|
|
|
@ -13,7 +13,7 @@ const char EVENTS_HTML_END[] = R"=====(
|
|||
)=====";
|
||||
|
||||
String events_processor(const String& var) {
|
||||
if (var == "ABC") {
|
||||
if (var == "X") {
|
||||
String content = "";
|
||||
content.reserve(5000);
|
||||
// Page format
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include "../../datalayer/datalayer.h"
|
||||
|
||||
String settings_processor(const String& var) {
|
||||
if (var == "ABC") {
|
||||
if (var == "X") {
|
||||
String content = "";
|
||||
//Page format
|
||||
content += "<style>";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue