I'm getting QuotaExceededError (DOM Exception 22): The quota has been exceeded.
on Safari when I'm in incognito mode.
I went through similar questions like this: QuotaExceededError: Dom exception 22: An attempt was made to add something to storage that exceeded the quota
But they talk about setItem, I get this error somewhere else.
I get this error on this line: localStorage['gallery.extensions'] = JSON.stringify({});
or localStorage['asdf'] = 'asdfg';
I tried combining this answer and replacing every line like localStorage['asdf'] = 'asdfg';
to be localStorage.setItem('asdf', 'asdfg')
and every access like localStorage['asdf']
to be localStorage.getItem('asdf')
but that didn't help either.
I get this error on this line
- that's just like usingsetItem
- so same constraints – Ria