1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

Revert "larger fallback URL for mobile"

This reverts commit 0813b290b6f1ce4d5aa01ccff9ff3d32b939b409.
This commit is contained in:
Kyle Spearrin 2017-10-20 23:33:33 -04:00
parent 0813b290b6
commit c10245eea6

View File

@ -45,8 +45,7 @@ namespace Bit.Icons.Controllers
if(!_memoryCache.TryGetValue(mappedDomain, out Icon icon))
{
var iconUrl = $"{_iconsSettings.BestIconBaseUrl}/icon?url={mappedDomain}&size=16..24..32" +
$"&fallback_icon_url=https://raw.githubusercontent.com/bitwarden/mobile/master/src/Android/Resources/" +
"drawable-xxxhdpi/login.png";
$"&fallback_icon_url=https://raw.githubusercontent.com/bitwarden/web/master/src/images/fa-globe.png";
var response = await _httpClient.GetAsync(iconUrl);
if(!response.IsSuccessStatusCode)
{