From 312690c0024ecc2c699384a7a20717de6232f0c3 Mon Sep 17 00:00:00 2001 From: Florian Zevedei Date: Tue, 25 Jun 2024 13:43:33 +0200 Subject: [PATCH] Fix builder in sample --- .../BotAndWebApplication/BotStuff/Tasks/BotBackgroundTask.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Examples/BotAndWebApplication/BotStuff/Tasks/BotBackgroundTask.cs b/Examples/BotAndWebApplication/BotStuff/Tasks/BotBackgroundTask.cs index 9e1ea6a..f9d56e2 100644 --- a/Examples/BotAndWebApplication/BotStuff/Tasks/BotBackgroundTask.cs +++ b/Examples/BotAndWebApplication/BotStuff/Tasks/BotBackgroundTask.cs @@ -16,6 +16,7 @@ namespace BotAndWebApplication.BotStuff.Tasks .DefaultCommands() .NoSerialization() .UseEnglish() + .UseThreadPool() .Build(); }