We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8ad3d1 + 8bbbe36 commit 22c9ab7Copy full SHA for 22c9ab7
app/src/main/java/com/beemdevelopment/aegis/vault/VaultManager.java
@@ -55,8 +55,9 @@ public VaultRepository initNew(@Nullable VaultFileCredentials creds) throws Vaul
55
throw new IllegalStateException("Vault manager is already initialized");
56
}
57
58
- _repo = new VaultRepository(_context, new Vault(), creds);
59
- save();
+ VaultRepository repo = new VaultRepository(_context, new Vault(), creds);
+ repo.save();
60
+ _repo = repo;
61
62
if (getVault().isEncryptionEnabled()) {
63
startNotificationService();
0 commit comments