This commit is contained in:
Konstantin Vukolov 2026-01-21 15:11:26 +03:00
parent c22a2b56fb
commit 1bcc9068c1

View File

@ -27,7 +27,6 @@ size_t OpdsParser::write(uint8_t c) {
} }
size_t OpdsParser::write(const uint8_t* xmlData, const size_t length) { size_t OpdsParser::write(const uint8_t* xmlData, const size_t length) {
Serial.printf("Got %d bytes to parse\n", length);
if (errorOccured) { if (errorOccured) {
return length; return length;
} }
@ -66,6 +65,7 @@ size_t OpdsParser::write(const uint8_t* xmlData, const size_t length) {
currentPos += toRead; currentPos += toRead;
remaining -= toRead; remaining -= toRead;
} }
return length;
} }
void OpdsParser::flush() { void OpdsParser::flush() {