Skip to content

Commit

Permalink
Pass public link password when creating folder
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed Nov 8, 2019
1 parent 63f42d2 commit b40e2b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/src/mixins.js
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand Down

0 comments on commit b40e2b9

Please sign in to comment.