From 246a6e20199cc50b0e258e3ddbba7751b230ff22 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 25 Mar 2025 17:12:38 -0400 Subject: [PATCH] .toarray for .net8 --- ConsoleService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConsoleService.cs b/ConsoleService.cs index 1a568a3..25e7244 100644 --- a/ConsoleService.cs +++ b/ConsoleService.cs @@ -42,7 +42,7 @@ namespace vassago ProtocolInterfaces.ProtocolList.twitchs.Add(t); } - Task.WaitAll(initTasks, cancellationToken); + Task.WaitAll(initTasks.ToArray(), cancellationToken); } public Task StopAsync(CancellationToken cancellationToken)