Fixed URL used to check Gravatar network availability (#12949)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
* Fixed URL used to check Gravatar network availability.
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user