1
Fork 0
mirror of https://gitlab.com/Kwoth/nadekobot.git synced 2024-10-02 20:13:13 +00:00

Fixed an issue with streams not showing online or offline status

This commit is contained in:
Kwoth 2022-02-17 15:23:10 +01:00
parent 60e0729988
commit e0e044278e
2 changed files with 1 additions and 2 deletions

View file

@ -101,6 +101,7 @@ public class NotifChecker
|| !typeDict.TryGetValue(key.Name, out var oldData)
|| oldData is null)
{
CacheAddData(key, newData, true);
continue;
}

View file

@ -36,9 +36,7 @@ public class XpService : INService, IReadyExecutor
private readonly IEmbedBuilderService _eb;
private readonly ConcurrentDictionary<ulong, ConcurrentHashSet<ulong>> _excludedRoles;
private readonly ConcurrentDictionary<ulong, ConcurrentHashSet<ulong>> _excludedChannels;
private readonly ConcurrentHashSet<ulong> _excludedServers;
private readonly ConcurrentQueue<UserCacheItem> _addMessageXp = new();