diff options
Diffstat (limited to 'ext/webstorage/01_webstorage.js')
-rw-r--r-- | ext/webstorage/01_webstorage.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/webstorage/01_webstorage.js b/ext/webstorage/01_webstorage.js index 831f63f59..6640c04e5 100644 --- a/ext/webstorage/01_webstorage.js +++ b/ext/webstorage/01_webstorage.js @@ -55,10 +55,7 @@ context: "Argument 2", }); - core.opSync("op_webstorage_set", { - keyName: key, - keyValue: value, - }, this[_persistent]); + core.opSync("op_webstorage_set", key, value, this[_persistent]); } getItem(key) { |