Explorar o código

adjust to framework changes

Kolja Strohm hai 1 mes
pai
achega
cc986f083a
Modificáronse 1 ficheiros con 1 adicións e 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