Skip to content

Commit 35fd2cc

Browse files
committed
Make ESP8266WebServer::urlDecode public (#1419)
1 parent fc80526 commit 35fd2cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libraries/ESP8266WebServer/src/ESP8266WebServer.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ class ESP8266WebServer
119119
void sendContent_P(PGM_P content);
120120
void sendContent_P(PGM_P content, size_t size);
121121

122+
static String urlDecode(const String& text);
123+
122124
template<typename T> size_t streamFile(T &file, const String& contentType){
123125
setContentLength(file.size());
124126
if (String(file.name()).endsWith(".gz") &&
@@ -142,7 +144,6 @@ template<typename T> size_t streamFile(T &file, const String& contentType){
142144
uint8_t _uploadReadByte(WiFiClient& client);
143145
void _prepareHeader(String& response, int code, const char* content_type, size_t contentLength);
144146
bool _collectHeader(const char* headerName, const char* headerValue);
145-
String urlDecode(const String& text);
146147

147148
struct RequestArgument {
148149
String key;

0 commit comments

Comments
 (0)