Fixed compiler warning related to a lack of await operators

This commit is contained in:
barelyprofessional
2025-07-20 01:31:23 -05:00
parent be96be9f85
commit 8bcba1755a

View File

@@ -316,11 +316,12 @@ public class BotServices
_logger.Info("Built the almanac shill task");
}
private async Task BuildDLiveStatusCheck()
private Task BuildDLiveStatusCheck()
{
_dliveStatusCheck = new DLive(_chatBot);
_dliveStatusCheck.StartLiveStatusCheck();
_logger.Info("Built the DLive livestream status check task");
return Task.CompletedTask;
}
private async Task BuildParti()