From 57cd989ed6bf758d7aeff8a76662212093551bc3 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Wed, 23 Jul 2025 22:44:35 -0500 Subject: [PATCH] Fixed persistence bug with PeerTube --- KfChatDotNetBot/Services/PeerTube.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Services/PeerTube.cs b/KfChatDotNetBot/Services/PeerTube.cs index 6b4fc1b..688a7cd 100644 --- a/KfChatDotNetBot/Services/PeerTube.cs +++ b/KfChatDotNetBot/Services/PeerTube.cs @@ -102,7 +102,7 @@ public class PeerTube(ChatBot kfChatBot) : IDisposable _logger.Debug($"Persisting currently live streams, count is {currentlyLive.Count}"); await SettingsProvider.SetValueAsJsonObjectAsync(BuiltIn.Keys.KiwiPeerTubePersistedCurrentlyLiveStreams, - currentlyLive); + persistedLive); } }