Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed863845 authored by Andreas Huber's avatar Andreas Huber Committed by Android (Google) Code Review
Browse files

Merge "Parse the last none-empty line of .m3u8 file" into jb-mr2-dev

parents 9e0727ca 1e0757e0
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -163,9 +163,6 @@ status_t M3UParser::parse(const void *_data, size_t size) {
        while (offsetLF < size && data[offsetLF] != '\n') {
            ++offsetLF;
        }
        if (offsetLF >= size) {
            break;
        }

        AString line;
        if (offsetLF > offset && data[offsetLF - 1] == '\r') {