Procházet zdrojové kódy

adjust to framework changes

Kolja Strohm před 1 měsícem
rodič
revize
cc986f083a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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