From 9ca4e030588b8ab752552db9be26769548d5579e Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 24 Aug 2025 03:08:46 -0500 Subject: [PATCH] Forgot to call capture async --- KfChatDotNetBot/Services/Owncast.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Services/Owncast.cs b/KfChatDotNetBot/Services/Owncast.cs index 491d98a..a8b78eb 100644 --- a/KfChatDotNetBot/Services/Owncast.cs +++ b/KfChatDotNetBot/Services/Owncast.cs @@ -47,7 +47,7 @@ public class Owncast(ChatBot kfChatBot) : IDisposable if (!status.Online) continue; await kfChatBot.SendChatMessageAsync("https://bossmanjack.tv restream is live!", true); if (!(await SettingsProvider.GetValueAsync(BuiltIn.Keys.CaptureEnabled)).ToBoolean()) continue; - _ = new StreamCapture("https://bossmanjack.tv", StreamCaptureMethods.YtDlp, ct); + _ = new StreamCapture("https://bossmanjack.tv", StreamCaptureMethods.YtDlp, ct).CaptureAsync(); } }