Explorar el Código

Fix download in sub-paths

Steven Silvester hace 8 años
padre
commit
f4bad532e3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)
         );
       }