mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Change gravatar connection check URL (#13067)
This commit is contained in:
parent
7cfea0787e
commit
08ac34109a
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ const LoginPage = ({ router, location }: ILoginPageProps) => {
|
|||
// API calls
|
||||
(async function testGravatarAvailability() {
|
||||
try {
|
||||
const response = await fetch("https://gravatar.com/gravatar");
|
||||
const response = await fetch("https://en.gravatar.com/gravatar");
|
||||
if (response.ok) {
|
||||
localStorage.setItem("gravatar_available", "true");
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue