livechannels will be limited to 1 for a short time until some necessary things are implemented

This commit is contained in:
Toastie 2025-03-20 15:25:22 +13:00
parent d7ec044340
commit 605073d6ec
Signed by: toastie_t0ast
GPG key ID: 74226CF45EEE5AAF

View file

@ -17,7 +17,7 @@ public class LiveChannelService(
IReplacementService repSvc,
ShardData shardData) : IReadyExecutor, IEService
{
public const int MAX_LIVECHANNELS = 5;
public const int MAX_LIVECHANNELS = 1;
private readonly ConcurrentDictionary<ulong, ConcurrentDictionary<ulong, LiveChannelConfig>> _liveChannels = new();