1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-22 07:42:28 +00:00

Fixed: Trim spaces and empty values in Proxy Bypass List

(cherry picked from commit 846333ddf0d9da775c80d004fdb9b41e700ef359)
This commit is contained in:
bakerboy448 2024-08-25 19:24:16 -05:00 committed by servarr
parent 963ffbea4e
commit 95b0b31745

View file

@ -29,7 +29,8 @@ public string[] BypassListAsArray
{ {
if (!string.IsNullOrWhiteSpace(BypassFilter)) if (!string.IsNullOrWhiteSpace(BypassFilter))
{ {
var hostlist = BypassFilter.Split(','); var hostlist = BypassFilter.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries);
for (var i = 0; i < hostlist.Length; i++) for (var i = 0; i < hostlist.Length; i++)
{ {
if (hostlist[i].StartsWith("*")) if (hostlist[i].StartsWith("*"))