From 58ca8655231af322f3ab4c291ad774d6bf960805 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 21 Nov 2022 15:58:36 +0100 Subject: [PATCH] Fix csrf error Signed-off-by: Carl Schwan --- src/views/OAuth2Authorize.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/OAuth2Authorize.vue b/src/views/OAuth2Authorize.vue index 0732f1ec..01041d5a 100644 --- a/src/views/OAuth2Authorize.vue +++ b/src/views/OAuth2Authorize.vue @@ -24,6 +24,9 @@ {{ t('social', '{appDisplayName} would like permission to access your account. It is a third party application.', {appDisplayName: appName}) }} {{ t('social', 'If you do not trust it, then you should not authorize it.') }}

+
{{ t('social', 'Authorize') }} @@ -53,7 +56,7 @@ export default { }, computed: { homeUrl() { - generateUrl('/apps/social/') + return generateUrl('/apps/social/') }, }, }