1
0
mirror of https://gitlab.com/Deukhoofd/DeukBot4.git synced 2025-09-02 23:57:19 +00:00

Changed debug piece of code from checking birthdays once per second to once per hour

This commit is contained in:
Deukhoofd 2018-10-08 18:48:44 +02:00
parent 599d24ab3f
commit 55e920496a
No known key found for this signature in database
GPG Key ID: B4C087AC81641654

View File

@ -71,7 +71,7 @@ namespace DeukBot4.Database
{
Logger.Main.LogError(e);
}
await Task.Delay(TimeSpan.FromSeconds(1));
await Task.Delay(TimeSpan.FromHours(1));
await CheckBirthdays();
}