You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can imagine this has to do with using react natives AsyncStorage, which only saves strings.
We should find a way to save the type of the key before saving them to async storage. Once saved there I think it is not possible to find out the type again.
Maybe this is an issue with all integers?
Easily reproducible by creating a @persist Map<number, whatever>, then saving something in it, rehydrating, and its key has changed from int to string.
The text was updated successfully, but these errors were encountered:
I can imagine this has to do with using react natives AsyncStorage, which only saves strings.
We should find a way to save the type of the key before saving them to async storage. Once saved there I think it is not possible to find out the type again.
Maybe this is an issue with all integers?
Easily reproducible by creating a
@persist Map<number, whatever>
, then saving something in it, rehydrating, and its key has changed from int to string.The text was updated successfully, but these errors were encountered: