mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 09:37:29 -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
de30163f9a
commit
f47b72c134
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