-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hive.deleter(key) Does not delete over relaunches #26
Comments
Thanks for reporting. I'll investigate that. Which version of Hive and which device are you using? |
I can reproduce the issue and I will fix it with the next version. |
This is fixed in v0.5.0 but you'll need to clear the cache of your app. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Calling
Hive.delete(key)
deletes the key when app is in use and keep working normally for changes on the box, but after killing and launching againHive
always fetches the last state before the key deletion.Open app first time
box.get(key)
-> ["123", "1234"]Hive.delete(key)
box.get(key)
-> []Kill app
Relaunch app
box.get(key)
-> ["123", "1234"]// should be []
The text was updated successfully, but these errors were encountered: