1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-09 03:53:15 +00:00

catch errors

This commit is contained in:
Kyle Spearrin
2019-06-13 20:41:24 -04:00
parent 5b119ded17
commit 636d3c02c4
2 changed files with 15 additions and 2 deletions

View File

@@ -46,7 +46,10 @@ namespace Bit.App.Pages
if(EditMode)
{
var folder = await _folderService.GetAsync(FolderId);
Folder = await folder.DecryptAsync();
if(folder != null)
{
Folder = await folder.DecryptAsync();
}
}
else
{