fix Digest authentication for IE

This commit is contained in:
Me No Dev
2016-10-18 16:30:14 +03:00
committed by GitHub
parent 0adc36b1f6
commit 49d5a24815

View File

@ -150,7 +150,8 @@ bool checkDigestAuthentication(const char * header, const char * method, const c
myHeader += ", ";
do {
String avLine = myHeader.substring(0, nextBreak);
myHeader = myHeader.substring(nextBreak+2);
avLine.trim();
myHeader = myHeader.substring(nextBreak+1);
nextBreak = myHeader.indexOf(",");
int eqSign = avLine.indexOf("=");