Fixed persistence bug with PeerTube

This commit is contained in:
barelyprofessional
2025-07-23 22:44:35 -05:00
parent b01ba7c0a4
commit 57cd989ed6

View File

@@ -102,7 +102,7 @@ public class PeerTube(ChatBot kfChatBot) : IDisposable
_logger.Debug($"Persisting currently live streams, count is {currentlyLive.Count}"); _logger.Debug($"Persisting currently live streams, count is {currentlyLive.Count}");
await SettingsProvider.SetValueAsJsonObjectAsync(BuiltIn.Keys.KiwiPeerTubePersistedCurrentlyLiveStreams, await SettingsProvider.SetValueAsJsonObjectAsync(BuiltIn.Keys.KiwiPeerTubePersistedCurrentlyLiveStreams,
currentlyLive); persistedLive);
} }
} }