diff options
| author | 天王州アテネ <qcmc@qcminecraft.com> | 2021-01-30 09:57:11 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-30 10:57:11 +0900 |
| commit | 7fc3e7dd8b605c26578b39633af89d83c756b099 (patch) | |
| tree | 9be64de4faf34e713b5a5c8ca6a828c13fa3accb /src/client/components | |
| parent | 12.68.0 (diff) | |
| download | misskey-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.vue | 2 |
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`; |