From 9cb103e6aadcc7e2e4375fa4d5c830c357d790ff Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 1 May 2020 11:09:44 -0400 Subject: [PATCH] update comment --- src/Icons/Services/IconFetchingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Icons/Services/IconFetchingService.cs b/src/Icons/Services/IconFetchingService.cs index 1ce044bdc2..da30e76865 100644 --- a/src/Icons/Services/IconFetchingService.cs +++ b/src/Icons/Services/IconFetchingService.cs @@ -285,7 +285,7 @@ namespace Bit.Icons.Services return null; } - // Prevent local hosts (localhost, bobs-pc, etc), IPv4, and IPv6 (which contain ":" in the host) + // Prevent local hosts (localhost, bobs-pc, etc) and IP addresses if (!uri.Host.Contains(".") || IPAddress.TryParse(uri.Host, out _)) { return null;