From 1f7eb7f402737bae5fbf74af68ea58a2474159d9 Mon Sep 17 00:00:00 2001 From: Tom Date: Thu, 17 Oct 2024 22:48:05 +0000 Subject: [PATCH] Fixed minor bug with VoiceStore --- Store/VoiceStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Store/VoiceStore.cs b/Store/VoiceStore.cs index 3dad776..68b6a82 100644 --- a/Store/VoiceStore.cs +++ b/Store/VoiceStore.cs @@ -213,7 +213,7 @@ namespace HermesSocketServer.Store { _voiceIdValidator.Check(key); _voices.Add(key, value); - if (!_deleted.Remove(key) && !_modified.Contains(key)) + if (!_deleted.Remove(key) && !_added.Contains(key)) _added.Add(key); } }