Change ObjectBox inserts to use queued instead of async

This commit is contained in:
Hank Grabowski 2023-06-27 13:14:42 -04:00
parent cfa1ad79ca
commit b68e9a999e

View file

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