Janitorial: Trailing whitespace tweaks

This commit is contained in:
wtl0 2022-06-27 00:42:51 +02:00
parent e25dce1573
commit 0b9ab0100a
4 changed files with 4 additions and 5 deletions

View file

@ -62,7 +62,7 @@ void app::setup(uint32_t timeout) {
mWeb->on("/hoymiles", std::bind(&app::showHoymiles, this));
mWeb->on("/livedata", std::bind(&app::showLiveData, this));
mWeb->on("/json", std::bind(&app::showJSON, this));
if(mSettingsValid) {
mEep->read(ADDR_INV_INTERVAL, &mSendInterval);
if(mSendInterval < 5)
@ -753,7 +753,7 @@ void app::showLiveData(void) {
modHtml += F("</pre>");
#endif
}
}
}
mWeb->send(200, F("text/html"), modHtml);
}