1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

blacklist of link rels to ignore

This commit is contained in:
Kyle Spearrin 2019-02-16 09:15:24 -05:00
parent dee395960a
commit 594c9e9e3e

View File

@ -17,6 +17,8 @@ namespace Bit.Icons.Services
{
private readonly HashSet<string> _iconRels =
new HashSet<string> { "icon", "apple-touch-icon", "shortcut icon" };
private readonly HashSet<string> _blacklistedRels =
new HashSet<string> { "preload", "image_src", "preconnect", "canonical", "alternate", "stylesheet" };
private readonly HashSet<string> _iconExtensions =
new HashSet<string> { ".ico", ".png", ".jpg", ".jpeg" };
@ -155,7 +157,7 @@ namespace Bit.Icons.Services
{
icons.Add(new IconResult(hrefAttr.Value, sizesAttr?.Value));
}
else
else if(relAttr == null || !_blacklistedRels.Contains(relAttr.Value.ToLower()))
{
try
{