ソースを参照

Fix download in sub-paths

Steven Silvester 8 年 前
コミット
f4bad532e3
1 ファイル変更1 行追加1 行削除
  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)
         );
       }