fixes for match detection selection

This commit is contained in:
Kyle Spearrin 2018-03-22 09:08:19 -04:00
parent e7ab6da068
commit 215ded8a77
1 changed files with 2 additions and 2 deletions

View File

@ -401,11 +401,11 @@ namespace Bit.App.Utilities
null, options.ToArray());
UriMatchType? selectedVal = null;
if(val == AppResources.Cancel)
if(val == null || val == AppResources.Cancel)
{
selectedVal = exactingMatchVal;
}
else if(val != null && val != AppResources.Default)
else if(val.Replace("✓ ", string.Empty) != AppResources.Default)
{
selectedVal = UriMatchOptionsMap.ElementAt(Array.IndexOf(optionsArr, val) - 1).Key;
}