From 71c86d564527dcec6b34b269150a010d36e1658a Mon Sep 17 00:00:00 2001 From: Bart De Vries Date: Fri, 9 Apr 2021 00:03:19 +0200 Subject: [PATCH] Add TODO for enclosure file size check --- src/enclosure.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/enclosure.cpp b/src/enclosure.cpp index 6c92eab3..a9b8d0b2 100644 --- a/src/enclosure.cpp +++ b/src/enclosure.cpp @@ -35,6 +35,7 @@ Enclosure::Enclosure(Entry *entry) m_url = query.value(QStringLiteral("url")).toString(); m_playposition = query.value(QStringLiteral("playposition")).toInt(); + // TODO: what to do if the rss-reported filesize doesn't match the real file size??? QFile file(path()); if(file.size() == m_size) { m_status = Downloaded;