Преглед изворни кода

adjust to framework changes

Kolja Strohm пре 1 месец
родитељ
комит
cc986f083a
1 измењених фајлова са 1 додато и 1 уклоњено
  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