aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src
diff options
context:
space:
mode:
authorMichaIng <micha@dietpi.com>2021-09-24 13:48:52 +0200
committernextcloud-command <nextcloud-command@users.noreply.github.com>2021-09-26 01:18:23 +0000
commit39798614526c524265c93ff0d7a13e33a7914c12 (patch)
tree5f23754a89be5c95fce0ed65c605cac7d4628780 /apps/files/src
parentf060f33034e53f308fd7552bb145dd6d8b59ff4c (diff)
downloadnextcloud-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.vue2
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)