mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
parent
f0d581d512
commit
13382270d5
@ -20,16 +20,10 @@ final class Store<Data>: ResourceObserver, ObservableObject {
|
||||
}
|
||||
|
||||
func replace(_ items: Data) {
|
||||
// Ensure the change happens on the main thread
|
||||
DispatchQueue.main.async {
|
||||
self.all = items
|
||||
}
|
||||
all = items
|
||||
}
|
||||
|
||||
func clear() {
|
||||
// Ensure clearing happens on the main thread
|
||||
DispatchQueue.main.async {
|
||||
self.all = nil
|
||||
}
|
||||
all = nil
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user