diff options
author | MichaIng <micha@dietpi.com> | 2021-09-24 13:48:52 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2021-09-26 01:18:23 +0000 |
commit | 39798614526c524265c93ff0d7a13e33a7914c12 (patch) | |
tree | 5f23754a89be5c95fce0ed65c605cac7d4628780 /apps/files/src | |
parent | f060f33034e53f308fd7552bb145dd6d8b59ff4c (diff) | |
download | nextcloud-server-39798614526c524265c93ff0d7a13e33a7914c12.tar.gz nextcloud-server-39798614526c524265c93ff0d7a13e33a7914c12.zip |
Fix OCS URL typo in TransferOwnershipDialogue.vue
Introduced with nextcloud/router v2.0.0 migration: https://github.com/nextcloud/server/pull/27281
Signed-off-by: MichaIng <micha@dietpi.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/components/TransferOwnershipDialogue.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/TransferOwnershipDialogue.vue b/apps/files/src/components/TransferOwnershipDialogue.vue index fcbefb9026a..665af6fed08 100644 --- a/apps/files/src/components/TransferOwnershipDialogue.vue +++ b/apps/files/src/components/TransferOwnershipDialogue.vue @@ -197,7 +197,7 @@ export default { } logger.debug('submit transfer ownership form', data) - const url = generateOcsUrl('apps/files/api/v1//transferownership') + const url = generateOcsUrl('apps/files/api/v1/transferownership') axios.post(url, data) .then(resp => resp.data) |