ESPAsyncwebserver template processor bug - size related?
I have a bug on the /system/ page, I also noticed it on /wifi/ page sometimes, not reproducable everytime. So i am glad, the bug also appears here 100% reproducable I inserted `<li><a class='' href='/system/sensor/'>🌡️ Sensor configuration</a></li>` to the /system/ html template. With this included, the template processor will corrupt the final output when processing %FOOTER%, which got inserted from AddHeaderFooter() function. the rendered output, damaged, looks like this ``` <input type='submit' value='💾 Save settings'> </form> <div cla%</span></div> </div></body></html> ``` notice that the div on the second last line is broken at `class` - got `<div cla%</span></div>`. It should look like this: ``` <input type='submit' value='💾 Save settings'> </form> <div class='footer'><span>Build: 92724fa-esp8266-20241102171544</span></div> </div></body></html> ```
This commit is contained in:
parent
92724fa1f4
commit
84c4840993
1 changed files with 1 additions and 0 deletions
|
@ -54,6 +54,7 @@ const char* Page_system_HTML PROGMEM = R"(%HEADER%
|
|||
%FOOTER%)";
|
||||
|
||||
const char* Page_system_HTML_SUBNAV PROGMEM = R"(<ul class='subnav'>
|
||||
<li><a class='' href='/system/sensor/'>🌡️ Sensor configuration</a></li>
|
||||
<li><a class='%ACTIVE_SUBNAV_OUTPUT%' href='/system/output/'>⚡ Output configuration</a></li>
|
||||
<li><a class='%ACTIVE_SUBNAV_UPDATE%' href='/system/update'>🔄 Firmware update</a></li>
|
||||
<li><a class='%ACTIVE_SUBNAV_RESTART%' href='/system/restart' >🔁 CanGrow restart</a></li>
|
||||
|
|
Loading…
Reference in a new issue