Update LoggerClient.cs

This commit is contained in:
Mira 2023-06-18 20:43:10 +02:00
parent 7c1ff06fa5
commit 40e8632a77
Signed by untrusted user who does not match committer: Xorog
GPG key ID: 983798ED9C3E7C36

View file

@ -308,7 +308,8 @@ public sealed class LoggerClient : ILogger
{ {
for (int i = 0; i < blacklist.Length; i++) for (int i = 0; i < blacklist.Length; i++)
{ {
Blacklist.Add(blacklist[i]); if (!string.IsNullOrWhiteSpace(blacklist[i]))
Blacklist.Add(blacklist[i]);
} }
} }