Commit 2a0b6b6b authored by Julia Radzhabova's avatar Julia Radzhabova

Fix Bug 34996.

parent 6e9478ea
......@@ -63,7 +63,12 @@ define(['gateway'], function () {
var _setItem = function(name, value, just) {
if (_lsAllowed) {
localStorage.setItem(name, value);
try
{
localStorage.setItem(name, value);
}
catch (error){}
} else {
_store[name] = value;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment