Skip to content

Commit

Permalink
Adjust gravatar network connection test URL (#13076)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeheath authored Aug 1, 2023
1 parent c8dee16 commit ad96043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/pages/LoginPage/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const LoginPage = ({ router, location }: ILoginPageProps) => {
// API calls
(async function testGravatarAvailability() {
try {
const response = await fetch("https://en.gravatar.com/gravatar");
const response = await fetch("https://www.gravatar.com/avatar/0000");
if (response.ok) {
localStorage.setItem("gravatar_available", "true");
} else {
Expand Down

0 comments on commit ad96043

Please sign in to comment.