Fixes for BirthdayHandler
This commit is contained in:
parent
8e56152201
commit
da6c73be42
|
@ -81,19 +81,21 @@ namespace DeukBot4.Database
|
|||
}
|
||||
|
||||
private static DateTime _lastCheckedDate;
|
||||
// ReSharper disable once FunctionRecursiveOnAllPaths
|
||||
public static async Task CheckBirthdays()
|
||||
{
|
||||
var today = DateTime.UtcNow.Date - new TimeSpan(6, 0 , 0);
|
||||
while (true)
|
||||
{
|
||||
try
|
||||
{
|
||||
var today = DateTime.UtcNow - new TimeSpan(6, 0, 0);
|
||||
while (!Program.IsConnected)
|
||||
{
|
||||
await Task.Delay(500);
|
||||
}
|
||||
try
|
||||
|
||||
if (today.Date != _lastCheckedDate)
|
||||
{
|
||||
if (today != _lastCheckedDate)
|
||||
{
|
||||
_lastCheckedDate = today;
|
||||
_lastCheckedDate = today.Date;
|
||||
var db = Redis.GetDatabase();
|
||||
db.StringSet("lastCheckedBirthday", _lastCheckedDate.ToBinary().ToString("D"));
|
||||
await ActualBirthdayCheck(today);
|
||||
|
@ -104,7 +106,7 @@ namespace DeukBot4.Database
|
|||
Logger.Main.LogError(e);
|
||||
}
|
||||
await Task.Delay(TimeSpan.FromHours(1));
|
||||
await CheckBirthdays();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue