This commit is contained in:
TheXamlGuy
2024-04-30 20:46:47 +01:00
parent 2a4194ee22
commit 81f266d8c4
22 changed files with 296 additions and 162 deletions
+4 -4
View File
@@ -12,10 +12,10 @@ public class OpenVaultHandler(IMediator mediator) :
{
if (vault.Password is { Length: > 0 } password)
{
if (await mediator.Handle<Open<VaultStorage>, bool>(Open.As(new VaultStorage("Personal", password)), cancellationToken))
{
return true;
}
//if (await mediator.Handle<Open<VaultStorage>, bool>(Open.As(new VaultStorage("Personal", password)), cancellationToken))
//{
// return true;
//}
}
}