Forgot to call capture async

This commit is contained in:
barelyprofessional
2025-08-24 03:08:46 -05:00
parent 23be73d524
commit 9ca4e03058

View File

@@ -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();
}
}