mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
UriMatchType cast from int
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user