Merge pull request #1 from pikapakasystem/fix-20211019

don't go back too far after deleting folder
This commit is contained in:
Nakagawa Atsushi 2021-10-19 17:24:12 +09:00 committed by GitHub
commit 89008096c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
dist/index.js vendored
View File

@ -2354,7 +2354,7 @@ class FTPSyncProvider {
} }
} }
// navigate back to the root folder // navigate back to the root folder
yield this.upDir((_a = path.folders) === null || _a === void 0 ? void 0 : _a.length); yield this.upDir((_a = path.folders) === null || _a === void 0 ? void 0 : _a.length - 1);
this.logger.verbose(` completed`); this.logger.verbose(` completed`);
}); });
} }