diff --git a/src/util/helpers.h b/src/util/helpers.h index 100ae470..66967638 100644 --- a/src/util/helpers.h +++ b/src/util/helpers.h @@ -103,7 +103,7 @@ inline std::string to_string_iso(Time t) { auto tm = std::localtime(&teatime); std::stringstream b; - b << std::put_time(tm, "%FT%T%z"); + b << std::put_time(tm, "%FT%T"); return std::string(b.str()); }