shelving 1.188.4 → 1.188.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shelving",
3
- "version": "1.188.4",
3
+ "version": "1.188.5",
4
4
  "author": "Dave Houlbrooke <dave@shax.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -39,7 +39,7 @@ export class FetchStore extends Store {
39
39
  // Override to save callback.
40
40
  constructor(value, callback) {
41
41
  super(value);
42
- this.busy = new BooleanStore(value !== NONE);
42
+ this.busy = new BooleanStore(value === NONE);
43
43
  this._callback = callback;
44
44
  }
45
45
  /**