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;