فهرست منبع

mkcol: Ensure presence of a trailing slash

Closes: https://github.com/dom111/webdav-js/issues/56
chrysn 5 سال پیش
والد
کامیت
81532bbe3e
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/lib/UI/NativeDOM/Footer.js

+ 1 - 1
src/lib/UI/NativeDOM/Footer.js

@@ -33,7 +33,7 @@ export default class Footer extends Element {
         return;
       }
 
-      this.trigger('create-directory', joinPath(location.pathname, directoryName), directoryName, location.pathname);
+      this.trigger('create-directory', joinPath(location.pathname, directoryName) + '/', directoryName, location.pathname);
     });
   }
 }