Fixed URL used to check Gravatar network availability (#12949)

This commit is contained in:
Luke Heath 2023-07-25 10:08:57 -07:00 committed by GitHub
parent 2c45ae73ca
commit cd94d11ad7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changes/fix-gravatar-url Normal file
View file

@ -0,0 +1 @@
* Fixed URL used to check Gravatar network availability.

View file

@ -99,7 +99,7 @@ const LoginPage = ({ router, location }: ILoginPageProps) => {
// API calls
(async function testGravatarAvailability() {
try {
const response = await fetch("https://gravatar.com/avatar");
const response = await fetch("https://gravatar.com/gravatar");
if (response.ok) {
localStorage.setItem("gravatar_available", "true");
} else {