From 40e8632a77dd685ed761862afddf062832e86cd8 Mon Sep 17 00:00:00 2001 From: Mira <56395159+TheXorog@users.noreply.github.com> Date: Sun, 18 Jun 2023 20:43:10 +0200 Subject: [PATCH] Update LoggerClient.cs --- LoggerClient.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LoggerClient.cs b/LoggerClient.cs index c59064c..c29342c 100644 --- a/LoggerClient.cs +++ b/LoggerClient.cs @@ -308,7 +308,8 @@ public sealed class LoggerClient : ILogger { for (int i = 0; i < blacklist.Length; i++) { - Blacklist.Add(blacklist[i]); + if (!string.IsNullOrWhiteSpace(blacklist[i])) + Blacklist.Add(blacklist[i]); } }