From b40e2b9d2336f057a5287d8e85713d6c857c4e04 Mon Sep 17 00:00:00 2001 From: Saugat Pachhai Date: Thu, 7 Nov 2019 17:06:13 +0545 Subject: [PATCH] Pass public link password when creating folder --- apps/files/src/mixins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/src/mixins.js b/apps/files/src/mixins.js index c2717903337..1cf334f7cc9 100644 --- a/apps/files/src/mixins.js +++ b/apps/files/src/mixins.js @@ -346,7 +346,7 @@ export default { let p if (this.publicPage()) { - p = this.queue.add(() => this.$client.publicFiles.createFolder(this.rootPath + directory)) + p = this.queue.add(() => this.$client.publicFiles.createFolder(this.rootPath, directory, this.publicLinkPassword)) } else { p = this.queue.add(() => this.$client.files.createFolder(this.rootPath + directory)) }