1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-25 13:24:50 -05:00
This commit is contained in:
Kyle Spearrin 2017-10-09 16:23:48 -04:00
parent 32c93f09a7
commit f8c5bc1c39

View File

@ -34,7 +34,7 @@ namespace Bit.Icons.Controllers
return new BadRequestResult(); return new BadRequestResult();
} }
if(!url.StartsWith("http://") || !url.StartsWith("https://")) if(!url.StartsWith("http://") && !url.StartsWith("https://"))
{ {
url = "http://" + url; url = "http://" + url;
} }