From f0893ca214361cef3c314891306cbf85c312910b Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 4 Jun 2019 12:34:29 -0400 Subject: [PATCH] UriMatchType cast from int --- src/Core/Services/CipherService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/CipherService.cs b/src/Core/Services/CipherService.cs index 23bd3e451..5ffdedd55 100644 --- a/src/Core/Services/CipherService.cs +++ b/src/Core/Services/CipherService.cs @@ -319,7 +319,7 @@ namespace Bit.Core.Services var others = new List(); var ciphers = await ciphersTask; - var defaultMatch = await _storageService.GetAsync(Constants.DefaultUriMatch); + var defaultMatch = (UriMatchType?)(await _storageService.GetAsync(Constants.DefaultUriMatch)); if(defaultMatch == null) { defaultMatch = UriMatchType.Domain;