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
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
* Fixed URL used to check Gravatar network availability.
+1 -1
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 {