backportbot[bot]
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
apps/federatedfilesharing/src/external.js
|
|
@ -35,7 +35,8 @@ window.OCA.Sharing.showAddExternalDialog = function(share, passwordProtected, ca |
|
|
|
.replace(/\/$/, '') // remove trailing slash
|
|
|
|
|
|
|
|
showRemoteShareDialog(name, owner, remote, passwordProtected) |
|
|
|
.then((result, password) => callback(result, { ...share, password })) |
|
|
|
// eslint-disable-next-line n/no-callback-literal
|
|
|
|
.then((password) => callback(true, { ...share, password })) |
|
|
|
// eslint-disable-next-line n/no-callback-literal
|
|
|
|
.catch(() => callback(false, share)) |
|
|
|
} |
|
|
|