From 1bcc9068c15886e1daa897d22f86ec570331974d Mon Sep 17 00:00:00 2001 From: Konstantin Vukolov Date: Wed, 21 Jan 2026 15:11:26 +0300 Subject: [PATCH] Fix --- lib/OpdsParser/OpdsParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpdsParser/OpdsParser.cpp b/lib/OpdsParser/OpdsParser.cpp index 7c3f309..6730060 100644 --- a/lib/OpdsParser/OpdsParser.cpp +++ b/lib/OpdsParser/OpdsParser.cpp @@ -27,7 +27,6 @@ size_t OpdsParser::write(uint8_t c) { } size_t OpdsParser::write(const uint8_t* xmlData, const size_t length) { - Serial.printf("Got %d bytes to parse\n", length); if (errorOccured) { return length; } @@ -66,6 +65,7 @@ size_t OpdsParser::write(const uint8_t* xmlData, const size_t length) { currentPos += toRead; remaining -= toRead; } + return length; } void OpdsParser::flush() {