mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-10-28 20:51:40 +01:00
If two headers with overlapping names are added while replace == true, like in:
```cpp
http.addHeader("api_token", "pMXFOLpinQqajaRQJYMeWObg2XYmcX1");
http.addHeader("token", "1234");
```
then replacing went wrong. This is fixed with this PR.