Open GoogleCodeExporter opened 9 years ago
Lately I've notices some change in Chrome's storage API and it now require user
to accept storage request for specified amount of space. Probably it is the
reason because there is no more storage space left.
Can you confirm storage available for the app using this snipped?
navigator.webkitPersistentStorage.queryUsageAndQuota(function(used, remaining) {
console.log("Used quota: " + used + ", remaining quota: " + remaining);
})
Run it in Chrome Dev Tools console (ctrl+shift+i -> console tab).
Original comment by jarro...@gmail.com
on 7 Nov 2013 at 2:16
I get this from that snippet:
Used quota: 0, remaining quota: 0
Then when I tried the app again, the local save worked! Very odd, I haven't
changed anything.
Simon
Original comment by simonpay...@gmail.com
on 7 Nov 2013 at 3:36
I was getting this error until I relaunched Chrome to accept the latest
updates. That seems to have fixed it.
Original comment by smithcol...@gmail.com
on 2 Jun 2015 at 10:31
Original issue reported on code.google.com by
simonpay...@gmail.com
on 5 Nov 2013 at 8:42