Dropped an extra colon from book <updated> dates

This commit is contained in:
Veloman Yunkan 2021-03-04 20:46:16 +04:00
parent 26331b401e
commit ae32ff40c0
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ std::string gen_date_str()
static std::string gen_date_from_yyyy_mm_dd(const std::string& date) static std::string gen_date_from_yyyy_mm_dd(const std::string& date)
{ {
std::stringstream is; std::stringstream is;
is << date << "T00:00::00:Z"; is << date << "T00:00::00Z";
return is.str(); return is.str();
} }