mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
fix: backup merge
This commit is contained in:
@@ -6,6 +6,7 @@ class SnippetStore extends PersistentStore {
|
||||
|
||||
void put(Snippet snippet) {
|
||||
box.put(snippet.name, snippet);
|
||||
box.updateLastModified();
|
||||
}
|
||||
|
||||
List<Snippet> fetch() {
|
||||
@@ -22,5 +23,6 @@ class SnippetStore extends PersistentStore {
|
||||
|
||||
void delete(Snippet s) {
|
||||
box.delete(s.name);
|
||||
box.updateLastModified();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user