mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 10:28:28 +03:00
UriMatchType cast from int
This commit is contained in:
parent
82a58d9487
commit
f0893ca214
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ namespace Bit.Core.Services
|
||||||
var others = new List<CipherView>();
|
var others = new List<CipherView>();
|
||||||
var ciphers = await ciphersTask;
|
var ciphers = await ciphersTask;
|
||||||
|
|
||||||
var defaultMatch = await _storageService.GetAsync<UriMatchType?>(Constants.DefaultUriMatch);
|
var defaultMatch = (UriMatchType?)(await _storageService.GetAsync<int?>(Constants.DefaultUriMatch));
|
||||||
if(defaultMatch == null)
|
if(defaultMatch == null)
|
||||||
{
|
{
|
||||||
defaultMatch = UriMatchType.Domain;
|
defaultMatch = UriMatchType.Domain;
|
||||||
|
|
Loading…
Reference in a new issue