Hi,
we were using version 127.0.6533.100 for Windows.
we updated to 130.0.6723.70 and after starting our application all information saved in the local storage went lost.
After many investigation we figured out that the new Chromium version creates a new folder under:
C:\...\chromium\cache
which is called Default
Inside this Default folder there is another LocalStorage folder:
C:\...\chromium\cache\Default\Local Storage\leveldb
And apparently Chromium reads the localStorage from this folder but the old content is already in the original LocalStorage folder:
C:\...\chromium\cache\Local Storage\leveldb
If I override the content inside the Default folder with the old content I get the data back and my application loads the old local storage content.
How can we avoid this problem? Why is this Default folder created?
Regards,
Sergio