mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
icon fixes
This commit is contained in:
@@ -52,13 +52,13 @@ namespace Bit.App.Controls
|
||||
image = loginIconImage.Item2;
|
||||
break;
|
||||
case CipherType.SecureNote:
|
||||
icon = "";
|
||||
icon = "";
|
||||
break;
|
||||
case CipherType.Card:
|
||||
icon = "";
|
||||
icon = "";
|
||||
break;
|
||||
case CipherType.Identity:
|
||||
icon = "";
|
||||
icon = "";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@@ -83,7 +83,7 @@ namespace Bit.App.Controls
|
||||
|
||||
private Tuple<string, string> GetLoginIconImage(CipherView cipher)
|
||||
{
|
||||
string icon = "";
|
||||
string icon = "";
|
||||
string image = null;
|
||||
var imageEnabled = true;
|
||||
if(cipher.Login.Uri != null)
|
||||
@@ -93,11 +93,11 @@ namespace Bit.App.Controls
|
||||
|
||||
if(hostnameUri.StartsWith(Constants.AndroidAppProtocol))
|
||||
{
|
||||
icon = "";
|
||||
icon = "";
|
||||
}
|
||||
else if(hostnameUri.StartsWith(Constants.iOSAppProtocol))
|
||||
{
|
||||
icon = "";
|
||||
icon = "";
|
||||
}
|
||||
else if(imageEnabled && !hostnameUri.Contains("://") && hostnameUri.Contains("."))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user