From 50623b9b2940951c7bc951bd9e25c4c0c1f5c50b Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 22 Jul 2019 10:52:04 -0400 Subject: [PATCH] fix no folder reference --- src/App/Pages/Vault/AddEditPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Pages/Vault/AddEditPage.xaml.cs b/src/App/Pages/Vault/AddEditPage.xaml.cs index 833726745..4d8cc8496 100644 --- a/src/App/Pages/Vault/AddEditPage.xaml.cs +++ b/src/App/Pages/Vault/AddEditPage.xaml.cs @@ -41,7 +41,7 @@ namespace Bit.App.Pages _vm = BindingContext as AddEditPageViewModel; _vm.Page = this; _vm.CipherId = cipherId; - _vm.FolderId = folderId; + _vm.FolderId = folderId == "none" ? null : folderId; _vm.CollectionIds = collectionId != null ? new HashSet(new List { collectionId }) : null; _vm.Type = type; _vm.DefaultName = name ?? appOptions?.SaveName;