diff --git a/NEWS b/NEWS index 47e7f1be4..35fba5b78 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ ver 0.22.7 (not yet released) * decoder - ffmpeg: fix build problem with FFmpeg 3.4 +* storage + - curl: don't use glibc extension ver 0.22.6 (2021/02/16) * fix missing tags on songs in queue diff --git a/src/storage/plugins/CurlStorage.cxx b/src/storage/plugins/CurlStorage.cxx index c986a8a49..731f7e7b9 100644 --- a/src/storage/plugins/CurlStorage.cxx +++ b/src/storage/plugins/CurlStorage.cxx @@ -193,7 +193,7 @@ ParseTimeStamp(const char *s) { try { // TODO: make this more robust - return ParseTimePoint(s, "%a, %d %b %Y %T %Z"); + return ParseTimePoint(s, "%a, %d %b %Y %T"); } catch (...) { return std::chrono::system_clock::time_point::min(); }