fix: backup merge

This commit is contained in:
lollipopkit
2024-01-27 21:11:40 +08:00
parent dacf8f0864
commit b08265221f
13 changed files with 115 additions and 130 deletions

View File

@@ -6,6 +6,7 @@ class PrivateKeyStore extends PersistentStore {
void put(PrivateKeyInfo info) {
box.put(info.id, info);
box.updateLastModified();
}
List<PrivateKeyInfo> fetch() {
@@ -27,5 +28,6 @@ class PrivateKeyStore extends PersistentStore {
void delete(PrivateKeyInfo s) {
box.delete(s.id);
box.updateLastModified();
}
}