From 085c280e6a8dcd0aa665921480f3a9e8205fb959 Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Mon, 1 Feb 2016 00:24:51 +0200 Subject: [PATCH] readme edit: add missing request reference --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7f963ea..e6af613 100644 --- a/README.md +++ b/README.md @@ -108,15 +108,15 @@ for(int i=0;ihasParam("download"); AsyncWebParameter* p = request->getParam("download"); //Check if POST (but not File) parameter exists -bool exists = hasParam("download", true); +bool exists = request->hasParam("download", true); AsyncWebParameter* p = request->getParam("download", true); //Check if FILE was uploaded -bool exists = hasParam("download", true, true); +bool exists = request->hasParam("download", true, true); AsyncWebParameter* p = request->getParam("download", true, true); ```