summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
author天王州アテネ <qcmc@qcminecraft.com>2021-01-30 09:57:11 +0800
committerGitHub <noreply@github.com>2021-01-30 10:57:11 +0900
commit7fc3e7dd8b605c26578b39633af89d83c756b099 (patch)
tree9be64de4faf34e713b5a5c8ca6a828c13fa3accb /src/client/components
parent12.68.0 (diff)
downloadmisskey-7fc3e7dd8b605c26578b39633af89d83c756b099.tar.gz
misskey-7fc3e7dd8b605c26578b39633af89d83c756b099.tar.bz2
misskey-7fc3e7dd8b605c26578b39633af89d83c756b099.zip
Update recaptcha's host (#7132)
Changed to recaptcha.net because google.com are blocked in some region
Diffstat (limited to 'src/client/components')
-rw-r--r--src/client/components/captcha.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/captcha.vue b/src/client/components/captcha.vue
index a6445ecea4..710fcd6169 100644
--- a/src/client/components/captcha.vue
+++ b/src/client/components/captcha.vue
@@ -57,7 +57,7 @@ export default defineComponent({
src() {
const endpoint = ({
hcaptcha: 'https://hcaptcha.com/1',
- grecaptcha: 'https://www.google.com/recaptcha',
+ grecaptcha: 'https://www.recaptcha.net/recaptcha',
} as Record<PropertyKey, unknown>)[this.provider];
return `${typeof endpoint == 'string' ? endpoint : 'about:invalid'}/api.js?render=explicit`;