app-storage icon indicating copy to clipboard operation
app-storage copied to clipboard

In setStoredValue: function(path, value) value is not used

Open BenoitClaveau opened this issue 6 years ago • 0 comments

Description

Why In setStoredValue: function(path, value) the value argument is not used.

  setStoredValue: function(path, value) {
    if (this.key != null) {
      try {
        this.__setStorageValue(this.key, this.data);
      } catch (e) {
        return Promise.reject(e);
      }

      this.fire('app-local-storage-changed', this, {node: window.top});
    }

BenoitClaveau avatar Oct 31 '18 16:10 BenoitClaveau