Alexander Sorokin
Results
1
comments of
Alexander Sorokin
replace in WebRequest.cpp ```cpp void AsyncWebServerRequest::_removeNotInterestingHeaders(){ if (_interestingHeaders.containsIgnoreCase("ANY")) return; // nothing to do StringArray *a = &_interestingHeaders; auto cmpr = LinkedList::Predicate{[&a](AsyncWebHeader* h) { return !a->containsIgnoreCase(h->name().c_str()); }}; while (_headers.remove_first(cmpr)){} } ```...