Explorar el Código

adjust to framework changes

Kolja Strohm hace 1 mes
padre
commit
cc986f083a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Network/HttpRequest.cpp

+ 1 - 1
Network/HttpRequest.cpp

@@ -145,7 +145,7 @@ Answer::Answer(const char* answer)
         if (len == 0) break;
     }
     // parse body
-    if (!reader.isEnd()) this->data = answer + reader.getLPosition();
+    if (!reader.isEnd()) this->data = answer + reader.getReadPosition();
 }
 
 const char* Answer::getContentType() const