Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/prefs.js

Issue 29350042: Issue 4023 - Move storage of subscription lists to localStorage (Closed)
Patch Set: Make sure entry["compressed"] is truthful Created Sept. 8, 2016, 11:40 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/lz-string.js ('k') | metadata.common » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/prefs.js
===================================================================
--- a/lib/prefs.js
+++ b/lib/prefs.js
@@ -254,7 +254,10 @@
else
{
overrides[pref] = value;
- ext.storage.set(prefToKey(pref), value);
+
+ let items = {};
+ items[prefToKey(pref)] = value;
+ ext.storage.set(items);
}
},
enumerable: true
« no previous file with comments | « lib/lz-string.js ('k') | metadata.common » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld