API date format changed.

This commit is contained in:
tastytea 2019-04-18 18:44:12 +02:00
parent 12678160ad
commit 2bd2f280e3
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ int main()
try
{
string year = get_date(system_clock::now(), "%Y");
string tomorrow = get_date(system_clock::now() + hours(24), "%d.%m.%Y");
string tomorrow = get_date(system_clock::now() + hours(24), "%Y-%m-%d");
string overmorrow = get_date(system_clock::now() + hours(48),
"%d.%m.%Y");