mol_dump_lib 0.0.143 → 0.0.145

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/web.mjs CHANGED
@@ -4663,7 +4663,12 @@ var $;
4663
4663
  }
4664
4664
  else {
4665
4665
  this.native().setItem(key, JSON.stringify(next));
4666
- this.$.$mol_storage.persisted(true);
4666
+ try {
4667
+ this.$.$mol_storage.persisted(true);
4668
+ }
4669
+ catch (error) {
4670
+ $mol_fail_log(error);
4671
+ }
4667
4672
  }
4668
4673
  return next;
4669
4674
  }