Change ObjectBox inserts to use queued instead of async

codemagic-setup
Hank Grabowski 2023-06-27 13:14:42 -04:00
rodzic cfa1ad79ca
commit b68e9a999e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -18,7 +18,7 @@ class ObjectBoxHashtagRepo implements IHashtagRepo {
@override
void add(Hashtag tag) {
box.putAsync(tag);
box.putQueued(tag);
}
@override