Jelajahi Sumber

Fix download in sub-paths

Steven Silvester 8 tahun lalu
induk
melakukan
f4bad532e3
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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)
         );
       }