@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.
- package/dist/fs-agent.js +4 -1
- 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
|
|
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);
|