Ver código fonte

Fix download in sub-paths

Steven Silvester 8 anos atrás
pai
commit
f4bad532e3
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/filebrowser/listing.ts

+ 1 - 1
src/filebrowser/listing.ts

@@ -405,7 +405,7 @@ class DirListing extends Widget {
   download(): Promise<IContents.IModel> {
     for (let item of this._getSelectedItems()) {
       if (item.type !== 'directory') {
-        return this._model.download(item.path).catch(error =>
+        return this._model.download(item.name).catch(error =>
           utils.showErrorMessage(this, 'Download file', error)
         );
       }