File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -128,9 +128,9 @@ export default class BrowserAccountStorage {
128128 }
129129
130130 async initCache ( ) {
131- await BrowserAccountStorage . changeEntry (
131+ await BrowserAccountStorage . setEntry (
132132 `bookmarks[${ this . accountId } ].cache` ,
133- ( ) => ( { } )
133+ { }
134134 )
135135 }
136136
@@ -144,9 +144,9 @@ export default class BrowserAccountStorage {
144144 }
145145
146146 async setCache ( data ) {
147- await BrowserAccountStorage . changeEntry (
147+ await BrowserAccountStorage . setEntry (
148148 `bookmarks[${ this . accountId } ].cache` ,
149- ( ) => data
149+ data
150150 )
151151 }
152152
@@ -157,9 +157,9 @@ export default class BrowserAccountStorage {
157157 }
158158
159159 async initMappings ( ) {
160- await BrowserAccountStorage . changeEntry (
160+ await BrowserAccountStorage . setEntry (
161161 `bookmarks[${ this . accountId } ].mappings` ,
162- ( ) => ( { } )
162+ { }
163163 )
164164 }
165165
@@ -185,9 +185,9 @@ export default class BrowserAccountStorage {
185185 }
186186
187187 async setMappings ( data ) {
188- await BrowserAccountStorage . changeEntry (
188+ await BrowserAccountStorage . setEntry (
189189 `bookmarks[${ this . accountId } ].mappings` ,
190- ( ) => data
190+ data
191191 )
192192 }
193193
You can’t perform that action at this time.
0 commit comments