mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(files_sharing): file request pass empty string if password or expiration is disabled
Signed-off-by: skjnldsv <skjnldsv@protonmail.com> [skip ci]
This commit is contained in:
parent
224cc58ec7
commit
4edb5cf9b9
1 changed files with 2 additions and 2 deletions
|
|
@ -296,8 +296,8 @@ export default defineComponent({
|
|||
path: this.destination,
|
||||
note: this.note,
|
||||
|
||||
password: this.password || undefined,
|
||||
expireDate: expireDate || undefined,
|
||||
password: this.password || '',
|
||||
expireDate: expireDate || '',
|
||||
|
||||
// Empty string
|
||||
shareWith: '',
|
||||
|
|
|
|||
Loading…
Reference in a new issue