@rljson/fs-agent 0.0.24 → 0.0.25

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.
Files changed (2) hide show
  1. package/dist/fs-agent.js +4 -1
  2. package/package.json +1 -1
package/dist/fs-agent.js CHANGED
@@ -2193,7 +2193,10 @@ ${err.stack}` : String(err);
2193
2193
  this._currentRef = postRestoreRef;
2194
2194
  return;
2195
2195
  } catch (err) {
2196
- if (err instanceof RestoreIncompleteError) {
2196
+ if (err instanceof MassDeleteRefusedError) {
2197
+ return;
2198
+ }
2199
+ if (err instanceof PartialRestoreError) {
2197
2200
  try {
2198
2201
  const halfApplied = await this._scanner.scan();
2199
2202
  this._lastSentContentKey = this._contentKeyFromTree(halfApplied);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rljson/fs-agent",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "Rljson fs-agent description",
5
5
  "homepage": "https://github.com/rljson/fs-agent",
6
6
  "bugs": "https://github.com/rljson/fs-agent/issues",